---
title: "List OAuth applications"
method: GET
path: "/organizations/{organization}/oauth-applications"
tags: ["OAuth applications"]
---

# List OAuth applications

`GET /organizations/{organization}/oauth-applications`

### Authorization
A service token   must have at least one of the following access   in order to use this API endpoint:

**Service Token Accesses**
 `read_oauth_applications`

## Path parameters

- `organization` string, required

## Query parameters

- `page` number
- `per_page` number

## Response `200`

Returns a list of the organization's oauth applications

- object
  - `current_page` integer, required — The current page number
  - `next_page` integer, required — The next page number
  - `next_page_url` string, required — The next page of results
  - `prev_page` integer, required — The previous page number
  - `prev_page_url` string, required — The previous page of results
  - `data` object[], required
    - `id` string, required — The ID of the app
    - `name` string, required — The name of the app
    - `redirect_uri` string, required — The redirect URI of the OAuth application
    - `domain` string, required — The domain of the OAuth application. Used for verification of a valid redirect uri
    - `created_at` string, required — When the OAuth application was created
    - `updated_at` string, required — When the OAuth application was last updated
    - `scopes` string[], required — The scopes that the OAuth application requires on a user account
    - `avatar` string, required — The image source for the OAuth application's avatar
    - `client_id` string, required — The OAuth application's unique client id
    - `tokens` integer, required — The number of tokens issued by the OAuth application

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.dev/planetscale/apis/planetscale-api.md) · [All operations](https://skmtc.dev/planetscale/apis/planetscale-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/planetscale/planetscale-api/revisions/477c6ebdabdf/schema)
