Skip to main content
POST
/
api
/
marketer?do=ppc_orders
PPC Orders
curl --request POST \
  --url 'https://partner.onlytraffic.com/api/marketer?do=ppc_orders' \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "limit": 10,
  "offset": 0
}
'
{
  "status": "success",
  "data": [
    {
      "id": 123,
      "public_id": "<string>",
      "url": "<string>",
      "model": {
        "onlyfans_id": "<string>",
        "uuid": "<string>",
        "name": "<string>",
        "username": "<string>",
        "images": [
          "<string>"
        ],
        "price": 123,
        "description": "<string>",
        "likes": 123,
        "categories": [
          "<string>"
        ]
      },
      "campaign": {
        "url": "<string>",
        "clicks_ordered": 123,
        "clicks_delivered": 123,
        "date_start": 123,
        "price_per_click": 123
      },
      "date_add": 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 PPC orders

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