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 GET "https://api.adrelay.dev/v1/redirect-uris" \
  -H "X-API-Key: $ADRELAY_API_KEY"
{
  "data": {
    "defaults": [
      "http://localhost:3000/callback",
      "http://localhost:3001/callback",
      "http://localhost:5173/connect",
      "http://localhost:8080/callback"
    ],
    "custom": [
      {
        "id": "uri_abc123",
        "uri": "https://myapp.com/callback",
        "createdAt": "2026-03-24T12:00:00.000Z"
      }
    ]
  }
}
Returns two lists:
  • defaults — Pre-registered localhost URIs that are always allowed for development
  • custom — URIs you have registered (max 10)