GET
/
api
/
v1
/
domain_infos
curl --request GET \
  --url https://www.fetchserp.com/api/v1/domain_infos \
  --header 'Authorization: Bearer <token>'
{
  "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

Authorization
string
header
required

A bearer token that will be supplied within an Authorization header as bearer <token>.

Query Parameters

domain
string
required

The domain to check

Response

200
application/json

success

The response is of type object.