curl --location --request POST 'https://api.inboxkit.com/v1/api/domains/nameservers/check-propagation' \
--header 'X-Workspace-Id;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"domains": [
"example.com"
]
}'
{
"error": false,
"message": "Nameservers propagation checked successfully",
"result": [
{
"_id": "68e39067fbb3aa02a020fd6f",
"uid": "d9563612-a6c8-40d0-8ed9-94a2261bdc66",
"name": "example.com",
"status": "active",
"createdAt": "2025-10-06T08:40:07.003Z",
"updatedAt": "2025-10-09T13:52:38.064Z",
"propagated": true
}
]
}