Handle Details abrufen

GET /domain/handle/:handle/info

URL Variablen

Name Beschreibung
handle Handle ID (z.B. FIRE24XX)

Response (application/json)

{
    "status": "success",
    "requestID": "4faf0318-6eb6-4728-8604-94e4efd0f089",
    "message": "Handle info successfully retrieved",
    "data": {
        "handle": "FIRE24XX",
        "type": "PERS",
        "gender": "MALE",
        "firstname": "Vorname",
        "lastname": "Nachname",
        "organisation": null,
        "street": "Straße",
        "number": "1",
        "zipcode": "12345",
        "city": "Stadt",
        "countrycode": "DE",
        "email": "[email protected]",
        "phone": "+490000000000",
        "fax": null
    }
}

Response Enums

Response Parameter Beschreibung
gender Geschlecht der im Handle hinterlegten Person

cURL

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

Anfrage testen