DNS-Einträge abrufen

GET /domain/:domain/dns

URL Variablen

Name Beschreibung
domain Domain-Name inkl. TLD

Response (application/json)

{
    "status": "success",
    "requestID": "2eaa760a-ab2e-4f3f-93cd-222420d82d88",
    "message": "DNS data successfully retrieved",
    "data": [
        {
            "record_id": 7498384,
            "type": "A",
            "name": "*",
            "data": "192.168.100.30",
            "ttl": 300
        },
        {
            "record_id": 7498385,
            "type": "A",
            "name": "hello",
            "data": "192.168.100.39",
            "ttl": 300
        },
        {
            "record_id": 7498387,
            "type": "TXT",
            "name": "fire",
            "data": "\"https:\/\/google.com\"",
            "ttl": 300
        }
    ]
}

Response Enums

Response Parameter Beschreibung
type Typ des DNS-Eintrags

cURL

curl "https://live.fireapi.de/domain/:domain/dns" -X GET -H "Content-Type: application/x-www-form-urlencoded" -H "X-FIRE-APIKEY: REPLACE_API-KEY"

Anfrage testen