---
title: "List company token transactions"
method: GET
path: "/company_token_transactions"
tags: ["Company token transactions"]
---

# List company token transactions

`GET /company_token_transactions`

Returns a paginated list of token transactions for a user or company, depending on the authenticated actor, with optional filtering by user and transaction type.

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

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.
- `company_id` string, required — The unique identifier of the company to list token transactions for.
- `user_id` string, nullable — Filter transactions to only those involving this specific user.
- `transaction_type` 'add' | 'subtract' | 'transfer' — The type of token transaction

## Response `200`

A successful response

- object — The connection type for CompanyTokenTransaction.
  - `data` CompanyTokenTransactionListItem[], required — A list of nodes.
    - `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.
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## 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)
