Skip to main content
GET
/
v1
/
domains
/
{id}
Retrieve a domain
curl --request GET \
  --url https://api.drin.run/v1/domains/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "domain": "<string>",
  "records": [
    {
      "type": "TXT",
      "name": "<string>",
      "value": "<string>",
      "priority": 123,
      "purpose": "dkim",
      "verified": true
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://drin.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your Drin API key, sent as Authorization: Bearer <key>.

Path Parameters

id
string
required

Response

The domain.

id
string
domain
string
status
enum<string>
Available options:
pending,
verified,
failed
records
object[]
createdAt
string<date-time>