Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.adrelay.dev/llms.txt

Use this file to discover all available pages before exploring further.

curl -X POST "https://api.adrelay.dev/v1/redirect-uris" \
  -H "X-API-Key: $ADRELAY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"uri": "https://myapp.com/callback"}'
{
  "data": {
    "id": "uri_abc123",
    "uri": "https://myapp.com/callback",
    "createdAt": "2026-03-24T12:00:00.000Z"
  }
}

Validation Rules

  • Must be a valid URL
  • https:// is required for non-localhost hosts
  • http:// is only allowed for localhost and 127.0.0.1
  • Maximum 10 custom URIs per account
  • Duplicate URIs are rejected with 409 CONFLICT