Skip to main content
GET
/
api
/
marketer
/
revshare
/
transactions
Error
A valid request URL is required to generate request examples
{
  "status": "success",
  "data": [
    {
      "of_transaction_id": "9876543210",
      "of_user_id": 789,
      "of_user_name": "John",
      "of_account_id": 456789,
      "campaign_id": "camp_abc123",
      "amount": 10.5,
      "revenue": 4.2,
      "type": "tip",
      "status": "processed",
      "is_refunded": false,
      "refunded_at": null,
      "refunded_at_ts": null,
      "date": "2024-06-01T12:00:00+00:00",
      "date_ts": 1717243200
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

offset
integer
default:0

Number of records to skip.

Required range: x >= 0
limit
integer
default:50

Number of records to return.

Required range: 1 <= x <= 1000
of_account_id
integer

Filter by OnlyFans account numeric id.

campaign_id
string

Filter by campaign public_id.

from
string<date>

Start date (inclusive), format Y-m-d.

Example:

"2024-01-01"

to
string<date>

End date (inclusive), format Y-m-d.

Example:

"2024-01-31"

status
enum<string>

Filter by transaction status.

Available options:
processed,
refunded

Response

200 - application/json

Success

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