---
title: "Get OAuth authorization details"
method: GET
path: "/oauth/authorizations/{authorization_id}"
tags: ["oauth-server"]
---

# Get OAuth authorization details

`GET /oauth/authorizations/{authorization_id}`

Retrieves details about a pending OAuth authorization request. Only available when OAuth server is enabled (set `GOTRUE_OAUTH_SERVER_ENABLED=true` for self-hosted or enable in Supabase Dashboard).

## Response `200`

Authorization details

- object
  - `authorization_id` string
  - `redirect_uri` string, uri
  - `client` object
    - `id` string, uuid
    - `name` string
    - `uri` string, uri
    - `logo_uri` string, uri
  - `user` object
    - `id` string, uuid
    - `email` string, email
  - `scope` string

## Other responses

- `401` — HTTP Unauthorized response.
- `404` — Authorization not found

## Changes

- **2025-11-10** `42172c11f78e` — 3 warning, 3 info
  - removed the optional property `client/client_id` from the response with the `200` status
  - removed the optional property `client/client_name` from the response with the `200` status
  - removed the optional property `client/client_uri` from the response with the `200` status
  - added the optional property `client/id` to the response with the `200` status
  - …2 more
- **2025-09-22** `f782805361ed` — 1 info
  - endpoint added
- **2023-02-01** `144a34ca6d74` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/supabase/apis/supabase-auth-rest-api/changes/oauth/authorizations/:authorization_id/get.md)

---

[API](https://skmtc.dev/supabase/apis/supabase-auth-rest-api.md) · [All operations](https://skmtc.dev/supabase/apis/supabase-auth-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/supabase/supabase-auth-rest-api/revisions/2e2a74a7459f/schema)
