Skip to main content
GET
/
api
/
marketer
/
cpc
/
orders
Error
A valid request URL is required to generate request examples
{
  "status": "success",
  "data": [
    {
      "order_id": "ppco_abc123",
      "of_account_id": 456789,
      "creative": {
        "of_account_id": 456789,
        "public_id": "cre_abc123",
        "uuid": "550e8400-e29b-41d4-a716-446655440000",
        "name": "Model Display Name",
        "username": "modelname",
        "picture": "https://cdn.example.com/img_800.webp",
        "picture_thumb": "https://cdn.example.com/img_200.webp",
        "pictures": [
          {
            "full": "https://cdn.example.com/img_800.webp",
            "thumb": "https://cdn.example.com/img_200.webp"
          }
        ],
        "price": 9.99,
        "description": "Subscribe for exclusive content",
        "categories": [
          "brunette",
          "fitness"
        ]
      },
      "url": "https://tracking.example.com/click/abc123",
      "clicks": {
        "ordered": 1000,
        "delivered": 342
      },
      "price_per_click": 0.05,
      "total_earned": 17.1,
      "status": "active",
      "date_start": 1704067200,
      "date_finish": null,
      "created_at": "2024-01-01T00:00:00+00:00",
      "created_at_ts": 1704067200
    }
  ]
}

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 (resolved via creative).

creative_public_id
string

Filter by creative public_id.

status
enum<string>

Filter by order status. Default: active.

Available options:
waiting,
active,
rejected,
completed

Response

200 - application/json

Success

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