curl --request GET \
--url https://api.example.com/v1/domainsList all domains in your account.
curl --request GET \
--url https://api.example.com/v1/domainscurl https://www.unosend.co/api/v1/domains \
-H "Authorization: Bearer un_xxxxxxxxxx"
{
"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"
}
]
}