---
title: "Get Access Token v3"
method: POST
path: "/token/v3"
tags: ["OAuth Authorization v3"]
---

# Get Access Token v3

`POST /token/v3`

Either:
  1) Exchanges an authorization_code for an access_token, or
  2) Exchanges a refresh_token for an access_token.
When exchanging a refresh_token for an access_token, also invalidates existing refresh_token and generates a new refresh_token.
See [Refresh Tokens](https://docs.developer.yelp.com/docs/refresh-tokens) for how this works

## Response `200`

Token issued

- union
  - TokenAuthorizationCodeResponse
    - `access_token` string, required
    - `expires_in` integer, required — Seconds until token expires.
    - `expires_on` string, date-time, required — The expiration time of the access token in ISO8601 format.
    - `token_type` string, required — The type of token issued. Default to ‘Bearer’
    - `refresh_token` string, required
    - `refresh_token_expires_in` integer, required — Seconds until refresh token expires.
    - `refresh_token_expires_on` string, date-time, required — The expiration time of the refresh token in ISO8601 format.
    - `scopes` string, required — Space separated scope values for the scope the business owner authorized the partner's application for.
  - TokenRefreshTokenResponse
    - `access_token` string, required
    - `expires_in` integer, required — Seconds until token expires.
    - `expires_on` string, date-time, required — The expiration time of the access token in ISO8601 format.
    - `token_type` string, required — The type of token issued. Default to ‘Bearer’

## Other responses

- `400` — unresolved $ref
- `429` — You have either exceeded your daily quota, or have exceeded the queries-per-second limit for this endpoint. Try reducing the rate at which you make queries.
- `500` — Internal Server Error

---

[API](https://skmtc.net/yelp/apis/businesses.md) · [All operations](https://skmtc.net/yelp/apis/businesses/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yelp/businesses/revisions/d3f744f55ed7/schema)
