---
title: "List Transactions"
method: GET
path: "/api/{account}/transactions"
tags: ["Transactions"]
---

# List Transactions

`GET /api/{account}/transactions`

Get a paginated list of transactions for an Account. Newest transactions are first. You can filter by transaction type and tips source.

## Query parameters

- `limit` string — The number of transactions to return. Recommended: `10`
- `startDate` string — The start date for transactions list. Default: `-30days`
- `marker` string — The marker used for pagination. Default: `null`
- `type` string — Filter by transaction type. Options: `subscribes`, `tips`, `post`, `chat_messages`, `stream`
- `tipsSource` string — Filter tips by source. Only applies when `type=tips`. Options: `profile`, `post_all`, `chat`, `stream`, `story`

## Response `200`

Success

- object
  - `data` object
    - `list` object[]
      - `amount` number
      - `vatAmount` integer
      - `taxAmount` integer
      - `net` number
      - `fee` integer
      - `createdAt` string
      - `currency` string
      - `description` string
      - `status` string
      - `user` object
        - `view` string
        - `id` integer
        - `name` string
        - `username` string
        - `isVerified` boolean
        - `avatar` string
        - `avatarThumbs` object
          - `c50` string
          - `c144` string
      - `payoutPendingDays` integer
      - `id` string
      - `type` string
    - `marker` integer
    - `hasMore` boolean
    - `nextMarker` integer
  - `_pagination` object
    - `next_page` string
  - `_meta` object
    - `_credits` object
      - `used` integer
      - `balance` integer
      - `note` string
    - `_cache` object
      - `is_cached` boolean
      - `note` string
    - `_rate_limits` object
      - `limit_minute` integer
      - `limit_day` integer
      - `remaining_minute` integer
      - `remaining_day` integer

---

[API](https://skmtc.net/onlyfansapi/apis/onlyfans-api.md) · [All operations](https://skmtc.net/onlyfansapi/apis/onlyfans-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/onlyfansapi/onlyfans-api/revisions/4a99d36f28a3/schema)
