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;' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-Key: <api-key>'
Responses
application/json {
"status": 200,
"status_description": "Request successful",
"data": {
"domains": [
{
"id": 1000,
"domain": "mydomain.com",
"renewal_date": "2030-01-01",
"status": "Active",
"status_id": 1,
"tags": [
"my-tag"
]
}
]
}
}
Modified at 2025-09-08 12:27:38