API Documentation
API Endpoints
- Api
- GETBacklinks for a domain
- GETEmails for a domain
- GETDomain Infos (dns, whois, server, ssl)
- GETKeywords Search Volume
- GETKeywords Suggestions
- GETLong-tail keywords generator
- GETMoz Domain Authority
- GETPage Indexation Check
- GETDomain Ranking
- GETScrape a web page without JS
- GETScrape a domain
- POSTScrape a web page with JS
- POSTScrape a web page with JS and proxy
- GETSERP
- GETSERP AI Overview and AI Mode step 1
- GETSERP AI Overview and AI Mode step 2
- GETSERP AI Overview and AI Mode
- GETSERP with HTML content
- GETSERP with AI Overview step 1
- GETSERP with AI Overview step 2
- GETSERP with text content
- GETCurrent User information
- GETWeb Page AI analysis
- GETWeb Page SEO analysis
- GET
Api
Domain Infos (dns, whois, server, ssl)
GET
/
api
/
v1
/
domain_infos
Copy
Ask AI
curl --request GET \
--url https://www.fetchserp.com/api/v1/domain_infos \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"data": {
"domain_info": {
"dns": {
"a": [
"<string>"
],
"mx": [
"<string>"
],
"txt": [
"<string>"
],
"cname": [
"<string>"
],
"ns": [
"<string>"
]
},
"whois": {
"domain": "<string>",
"registrar": "<string>",
"created_on": "<string>",
"expires_on": "<string>",
"nameservers": [
"<string>"
],
"contact_infos": "<any>"
},
"server": {
"ip": "<string>",
"open_ports": [
123
],
"https_supported": true,
"server": "<string>",
"response_headers": "<any>"
},
"ssl": {
"subject": "<string>",
"issuer": "<string>",
"valid_from": "<string>",
"valid_until": "<string>",
"serial_number": "<string>",
"version": 123,
"signature_algorithm": "<string>",
"public_key_algorithm": "<string>"
},
"technology_stack": {
"backend_frameworks": [
"<string>"
],
"cms": "<string>",
"frontend_frameworks": [
"<string>"
],
"analytics_cdns": [
"<string>"
],
"js_modules": [
"<string>"
],
"meta_info": {
"viewport": "<string>"
}
}
}
}
}
Authorizations
A bearer token that will be supplied within an Authorization
header as bearer <token>
.
Query Parameters
The domain to check
Response
200
application/json
success
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://www.fetchserp.com/api/v1/domain_infos \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"data": {
"domain_info": {
"dns": {
"a": [
"<string>"
],
"mx": [
"<string>"
],
"txt": [
"<string>"
],
"cname": [
"<string>"
],
"ns": [
"<string>"
]
},
"whois": {
"domain": "<string>",
"registrar": "<string>",
"created_on": "<string>",
"expires_on": "<string>",
"nameservers": [
"<string>"
],
"contact_infos": "<any>"
},
"server": {
"ip": "<string>",
"open_ports": [
123
],
"https_supported": true,
"server": "<string>",
"response_headers": "<any>"
},
"ssl": {
"subject": "<string>",
"issuer": "<string>",
"valid_from": "<string>",
"valid_until": "<string>",
"serial_number": "<string>",
"version": 123,
"signature_algorithm": "<string>",
"public_key_algorithm": "<string>"
},
"technology_stack": {
"backend_frameworks": [
"<string>"
],
"cms": "<string>",
"frontend_frameworks": [
"<string>"
],
"analytics_cdns": [
"<string>"
],
"js_modules": [
"<string>"
],
"meta_info": {
"viewport": "<string>"
}
}
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.