> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hopae.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Redirect URIs

> Retrieve the redirect URIs configured for an app.

Returns the full list of redirect URIs for an app.

## Request

<ParamField header="Authorization" type="string" required>
  `Bearer <API_KEY>` from Console > Developers > Workspace API Keys.
</ParamField>

### Path parameters

<ParamField path="client_id" type="string" required>
  Client identifier of the app.
</ParamField>

## Response

<ResponseField name="redirectUris" type="string[]">
  Allowed redirect URIs.
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -H "Authorization: Bearer sk_workspace_test_..." \
    "https://sandbox.api.hopae.com/connect/v1/apps/abc123/redirect-uris"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "redirectUris": [
      "https://app.example.com/callback"
    ]
  }
  ```
</ResponseExample>
