# GET /client-tokens/{client_token_id}

**Get a client-side token**

Returns a client-side token using its ID.

**Required permissions:** `client_token.read`

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `client_token_id` | string | required | Paddle ID of the client-side token entity. |

## Response (200)

- `data`: object (required) — Represents a client-side token entity.
  - `id`: string (required) — Unique Paddle ID for this client-side token entity, prefixed with `ctkn_`. Not used for Paddle.js authentication; use `token` for authentication. (pattern: `^ctkn_[a-z\d]{26}$`)
  - `token`: string (required) — A client-side token, prefixed with `test` or `live` depending on the environment of your account.  Pass as the `token` parameter when initializing Paddle.js to authenticate.
  - `name`: string (required) — Short name of this client-side token. Typically unique and human-identifiable. (Length: 1–150)
  - `description` (required)
  - `status`: string (required) — Status of this client-side token.
  - `revoked_at` (required) — RFC 3339 datetime string of when this client-side token was revoked. `null` if not revoked.
  - `created_at`: string (date-time) (required) — RFC 3339 datetime string of when this entity was created. Set automatically by Paddle.
  - `updated_at`: string (date-time) (required) — RFC 3339 datetime string of when this entity was updated. Set automatically by Paddle.
- `meta`: object (required) — Information about this response.
  - `request_id`: string (required) — Unique ID for the request relating to this response. Provide this when contacting Paddle support about a specific request.

### Response example

```json
{
  "data": {
    "id": "ctkn_01ghbkd0frb9k95cnhwd1bxpvk",
    "token": "live_7d279f61a3499fed520f7cd8c08",
    "name": "Pricing page integration",
    "description": "Used to display prices and open checkout within our pricing page on our marketing domain.",
    "status": "active",
    "created_at": "2025-06-26T14:36:14.695Z",
    "updated_at": "2025-06-26T14:36:14.695Z",
    "revoked_at": null
  },
  "meta": {
    "request_id": "1681f87f-9c36-4557-a1da-bbb622afa0cc"
  }
}
```
