Skip to main content
GET
/
registrar
/
v1
/
domains
/
{domain_name}
/
url-forwards
Get URL forwarding rules
curl --request GET \
  --url https://atom.com/api/registrar/v1/domains/{domain_name}/url-forwards \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "domain_name": "example.com",
    "forwards": [
      {
        "id": 456,
        "source": "www",
        "destination": "https://www.example.com",
        "type": "permanent"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Registrar API Bearer token. Obtain from dashboard at /dashboard/seller/api-access after requesting Registrar API access.

Path Parameters

domain_name
string
required

Domain name (e.g., 'example.com')

Response

Successful operation

success
boolean
Example:

true

data
object