---
title: "Retrieve company token transaction"
method: GET
path: "/company_token_transactions/{id}"
tags: ["Company token transactions"]
---

# Retrieve company token transaction

`GET /company_token_transactions/{id}`

Retrieves the details of an existing company token transaction.

Required permissions:
 - `company_token_transaction:read`
 - `member:basic:read`
 - `company:basic:read`

## Path parameters

- `id` string, required

## Response `200`

A successful response

- CompanyTokenTransaction — A token transaction records a credit or debit to a member's token balance within a company, including transfers between members.
  - `amount` number, required — The token amount for this transaction. Always a positive value regardless of transaction type.
  - `company` object, required — The company whose token balance this transaction affects.
    - `id` string, required — The unique identifier for the company.
    - `route` string, required — The slug/route of the company on the Whop site.
    - `title` string, required — The written name of the company.
  - `created_at` string, date-time, required — The datetime the company token transaction was created.
  - `description` string, nullable, required — Free-text description explaining the reason for this token transaction. Null if no description was provided.
  - `id` string, required — The unique identifier for the company token transaction.
  - `idempotency_key` string, nullable, required — A unique key used to prevent duplicate transactions when retrying API requests. Null if no idempotency key was provided.
  - `linked_transaction_id` string, nullable, required — The ID of the corresponding transaction on the other side of a transfer. Null if this is not a transfer transaction.
  - `member` object, required — The member whose token balance was affected by this transaction.
    - `id` string, required — The unique identifier for the company member.
  - `transaction_type` 'add' | 'subtract' | 'transfer', required — The type of token transaction
  - `user` object, required — The user whose token balance was affected by this transaction.
    - `id` string, required — The unique identifier for the user.
    - `name` string, nullable, required — The user's display name shown on their public profile.
    - `username` string, required — The user's unique username shown on their public profile.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

[API](https://skmtc.net/whop/apis/whop-api.md) · [All operations](https://skmtc.net/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whop/whop-api/versions/866821546d67/schema)
