Skip to main content
GET
/
v1
/
domains
List Domains
curl --request GET \
  --url https://api.example.com/v1/domains

Request

cURL
curl https://www.unosend.co/api/v1/domains \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "data": [
    {
      "id": "dom_123",
      "domain": "yourdomain.com",
      "status": "verified",
      "created_at": "2024-01-15T10:30:00.000Z"
    },
    {
      "id": "dom_124",
      "domain": "anotherdomain.com",
      "status": "pending",
      "created_at": "2024-01-16T10:30:00.000Z"
    }
  ]
}