Aller au contenu

Overview

Ce contenu n’est pas encore disponible dans votre langue.

The DomChekr REST API lets you programmatically manage watchlists, check domain availability, and receive real-time events via webhooks.

https://api.domchekr.com/v1

All endpoints are served over HTTPS. HTTP requests are redirected to HTTPS.

Requests are authenticated with an API key passed in the Authorization header:

Authorization: Bearer <YOUR_API_KEY>

You can generate and revoke API keys from Settings → API in the dashboard.

All request bodies must be application/json. All responses are application/json.

Content-Type: application/json
Accept: application/json
PlanRequests per minute
Free30
Pro300
Business3 000

When the limit is exceeded, the API responds with 429 Too Many Requests and a Retry-After header indicating when you can retry.

All errors follow a consistent shape:

{
"error": {
"code": "domain_not_found",
"message": "No domain with that ID exists in your account."
}
}

Common HTTP status codes:

StatusMeaning
400Bad request — invalid or missing parameters
401Unauthorized — missing or invalid API key
403Forbidden — action not allowed on this resource
404Not found
429Rate limit exceeded
500Internal server error

The API is versioned via the URL path (/v1). Breaking changes will introduce a new version. Previous versions are supported for at least 12 months after a new version is released.