---
title: "Retrieve Access Token"
method: POST
path: "/token"
tags: ["Authorization"]
---

# Retrieve Access Token

`POST /token`

After a listing has added you as their integrator, you can request an access token using your client credentials.

## Request body

- object
  - `client_id` string, required — OAuth client Identifier
  - `client_secret` string, required — OAuth client secret
  - `grant_type` 'client_credentials', required — OAuth grant type
  - `scope` string — Space-separated list of OAuth scopes

## Response `200`

Successful Token Retrieval

- object
  - `access_token` string — The access token
  - `token_type` string
  - `expires_in` integer — Expiration time in seconds
  - `scope` string
  - `created_at` integer — Creation time in seconds

## Other responses

- `400` — Not Found (Check your Credentials)
- `403` — Forbidden

---

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