-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
97 lines (97 loc) · 3.35 KB
/
openapi.yaml
File metadata and controls
97 lines (97 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
openapi: 3.0.4
info:
title: SSL Certificate Checker
description: >-
SSL Checker is a simple tool for checking SSL certificates. It returns the
SSL certificate details of a website.
termsOfService: https://apiverve.com/terms/
contact:
name: APIVerve Support
email: hello@apiverve.com
url: https://apiverve.com/contact
version: 1.0.0
externalDocs:
description: Learn more about APIVerve
url: https://docs.apiverve.com?utm_source=openapi
servers:
- url: https://api.apiverve.com/
paths:
/v1/sslchecker:
get:
summary: Check SSL Certificate
description: Check the SSL certificate of a domain
operationId: sslchecker
parameters:
- name: domain
in: query
schema:
type: string
required: true
description: The domain of the website to check the SSL certificate of
example: ebay.com
responses:
'200':
description: Successful Response
content:
application/json:
schema:
type: object
properties:
status:
type: string
description: status
error:
type: string
description: error
data:
type: object
description: data
example:
status: ok
error: null
data:
subject:
C: US
ST: California
O: eBay, Inc.
CN: ebay.com
issuer:
C: GB
O: Sectigo Limited
CN: Sectigo Public Server Authentication CA OV R36
subjectaltname: >-
DNS:ebay.com, DNS:befr.ebay.be, DNS:benl.ebay.be,
DNS:cafr.ebay.ca, DNS:e-bay.it, DNS:ebay.at, DNS:ebay.be,
DNS:ebay.ca, DNS:ebay.ch, DNS:ebay.co.uk, DNS:ebay.com.au,
DNS:ebay.com.hk, DNS:ebay.com.my, DNS:ebay.com.sg,
DNS:ebay.de, DNS:ebay.es, DNS:ebay.fr, DNS:ebay.ie,
DNS:ebay.in, DNS:ebay.it, DNS:ebay.nl, DNS:ebay.ph,
DNS:ebay.pl, DNS:ebay.us, DNS:ebay.vn, DNS:wwww.ebay.co.uk,
DNS:wwww.ebay.com, DNS:wwww.ebay.com.au, DNS:wwww.ebay.de,
DNS:wwww.ebay.in, DNS:wwww.ebay.it
infoAccess:
CA Issuers - URI:
- >-
http://crt.sectigo.com/SectigoPublicServerAuthenticationCAOVR36.crt
OCSP - URI:
- http://ocsp.sectigo.com
ca: false
bits: 2048
valid_from: Jul 28 00:00:00 2025 GMT
valid_to: Jul 28 23:59:59 2026 GMT
serialNumber: 99F408949A6416EDC3B8F5EC77B2EBE5
domain: ebay.com
'401':
description: Your request was not authorized, or your API Key was invalid
'404':
description: Requested resource was not found
'500':
description: A server error has occurred, try again later
components:
securitySchemes:
api_key:
type: apiKey
name: x-api-key
in: header
security:
- api_key: []