Skip to main content
GET
/
domains
/
{domainId}
Get domain details
curl --request GET \
  --url https://api.lettermint.co/v1/domains/{domainId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "domain": "<string>",
  "status_changed_at": "2023-11-07T05:31:56Z",
  "dns_records": [
    {
      "id": "<string>",
      "type": "TXT",
      "hostname": "<string>",
      "fqdn": "<string>",
      "content": "<string>",
      "status": "active",
      "verified_at": "<string>",
      "last_checked_at": "2023-11-07T05:31:56Z"
    }
  ],
  "projects": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

domainId
string
required

Query Parameters

include
string

Available includes are dnsRecords, dnsRecordsCount, dnsRecordsExists, projects, projectsCount, projectsExists. You can include multiple options by separating them with a comma.

Response

200 - application/json

DomainData

id
string
required
domain
string
required
status_changed_at
string<date-time> | null
required
created_at
string<date-time>
required
dns_records
DomainDnsRecordData · object[]
projects
object[]