Retrieve all domains from your account
Request
Add parameter in header API-Key
Example:API-Key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/domains?tags=project1,project2' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json {
"status": 0,
"status_description": "string",
"data": {
"domains": [
{
"id": 0,
"domain": "string",
"renewal_date": "string",
"status": "active",
"status_id": 0,
"tags": [
"string"
]
}
]
}
}
Modified at 2025-12-10 14:53:10