Skip to main content
GET
/
v2
/
access
/
earnings
/
transactions
List transactions
curl --request GET \
  --url https://api-next.ofauth.com/v2/access/earnings/transactions \
  --header 'apiKey: <api-key>' \
  --header 'x-connection-id: <api-key>'
{
  "list": [
    {
      "id": "<string>",
      "type": "<string>",
      "createdAt": "<string>",
      "amounts": {
        "gross": 123,
        "net": 123,
        "fee": 123,
        "vat": 123,
        "tax": 123
      },
      "currency": "<string>",
      "description": "<string>",
      "status": "<string>",
      "payoutPendingDays": 123,
      "user": {
        "id": 123,
        "name": "<string>",
        "username": "<string>",
        "avatar": "<string>"
      }
    }
  ],
  "hasMore": true,
  "nextMarker": 123
}

Authorizations

apiKey
string
header
required

Your OFAuth API key for authenticating requests.

x-connection-id
string
header
required

Requires a connection via the x-connection-id header.

Query Parameters

startDate
string | null

Start date for transactions

marker
string | null

Pagination marker from previous response

type
enum<string>

Transaction type filter

Available options:
subscribes,
chat_messages,
post,
stream,
tips
tipsSource
enum<string>

Tips source filter (when type=tips)

Available options:
chat,
post_all,
profile,
story,
stream

Response

Successful response

list
object[]
required
hasMore
boolean
required
nextMarker
number | null
required