---
title: "Retrieve an OAuth application by ID"
method: GET
path: "/oauth_applications/{oauth_application_id}"
tags: ["OAuth Applications"]
---

# Retrieve an OAuth application by ID

`GET /oauth_applications/{oauth_application_id}`

Fetches the OAuth application whose ID matches the provided `id` in the path.

## Path parameters

- `oauth_application_id` string, required

## Response `200`

An OAuth application

- OAuthApplication
  - `object` 'oauth_application', required
  - `id` string, required
  - `instance_id` string, required
  - `name` string, required
  - `client_id` string, required
  - `client_uri` string, nullable, required
  - `client_image_url` string, nullable, required
  - `dynamically_registered` boolean, required
  - `consent_screen_enabled` boolean, required
  - `pkce_required` boolean, required
  - `public` boolean, required
  - `scopes` string, required
  - `redirect_uris` string[], required
  - `callback_url` string, required — Deprecated: Use redirect_uris instead.
  - `authorize_url` string, required
  - `token_fetch_url` string, required
  - `user_info_url` string, required
  - `discovery_url` string, required
  - `token_introspection_url` string, required
  - `created_at` integer, required — Unix timestamp of creation.
  - `updated_at` integer, required — Unix timestamp of last update.

## Other responses

- `403` — Authorization invalid
- `404` — Resource not found

---

[API](https://skmtc.net/clerk/apis/clerk-backend-api.md) · [All operations](https://skmtc.net/clerk/apis/clerk-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clerk/clerk-backend-api/versions/cf036e7951d3/schema)
