Skip to main content
POST
/
api
/
marketer?do=transactions
Transactions
curl --request POST \
  --url 'https://partner.onlytraffic.com/api/marketer?do=transactions' \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "limit": 10,
  "offset": 0
}
'
{
  "status": "success",
  "data": [
    {
      "id": 123,
      "campaign_id": 123,
      "public_id": "<string>",
      "subscriber_id": 123,
      "onlyfans_id": "<string>",
      "type": "tip",
      "amount": 123,
      "revenue": 123,
      "is_undo": true,
      "date": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Your API key from the Partner Dashboard

Body

application/json
limit
integer
default:10

Number of results (10–1000)

Required range: 10 <= x <= 1000
offset
integer
default:0

Pagination offset

Response

200 - application/json

List of transactions

status
enum<string>
Available options:
success
data
object[]