Get Auth Code

Retrieve the authorization code for a domain name.

Response codes tell you whether the request worked or not.

200 means success. Codes in the 400s mean something was wrong with the request (e.g., missing or invalid access key). 429 means you are being rate limited. 500 means the server had a problem.

The status is determined by the API when it tries to process your request and is returned with every response.

{
  "success": true,
  "result": [
    {
      "authcode": "jh&6yT5r43)iu*(9"
    }
  ],
  "timestamp": "2024-01-15T10:30:00Z",
  "request_id": "req_abc123def456"
}
curl -X GET "https://api.nerve.io/api/v1/domains/{domain}/auth-code" \n
   -H "X-Nerve-Access-Key: YOUR_ACCESS_KEY" \n
   -H "X-Nerve-Password: YOUR_PASSWORD"

Let AI Code For You

Copy this prompt and use it with your favorite AI assistant.