---
title: "Verify an OAuth Access Token"
method: POST
path: "/oauth_applications/access_tokens/verify"
tags: ["OAuth Access Tokens"]
---

# Verify an OAuth Access Token

`POST /oauth_applications/access_tokens/verify`

## Request body

- object
  - `access_token` string — The access token to verify.
  - `secret` string — The access token to verify. This is deprecated, use `access_token` instead.

## Response `200`

200 OK

- union
  - object
    - `object` 'clerk_idp_oauth_access_token', required
    - `id` string, required
    - `client_id` string, required
    - `subject` string, required
    - `scopes` string[], required
    - `revoked` boolean, required
    - `revocation_reason` string, nullable, required
    - `expired` boolean, required
    - `expiration` number, nullable, required
    - `created_at` number, required
    - `updated_at` number, required
  - object
    - `active` false, required — Indicates that a JWT access token is not active (expired)

## Other responses

- `400` — 400 Bad Request
- `404` — 404 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/revisions/75df3a43fcb2/schema)
