GET
/
cpc
curl --request GET \
  --url https://app.levanta.io/api/creator/v1/cpc \
  --header 'Authorization: Bearer <token>'
{
  "campaigns": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "startDate": "<string>",
      "endDate": "<string>",
      "cancellationDate": "<string>",
      "product": {
        "asin": "<string>",
        "marketplace": "amazon.com",
        "title": "<string>"
      },
      "brandId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "budget": {
        "costPerClick": 123,
        "clicks": 123,
        "clicksRemaining": 123,
        "reached": true
      },
      "membership": {
        "earnings": {
          "clicks": 123,
          "amount": 123,
          "currency": "USD"
        },
        "joinDate": "<string>",
        "removed": true
      }
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number
default:25

The maximum number of items to return

Required range: 1 <= x <= 100
cursor
string

The cursor returned from the last request, if omitted the first page will be returned

Maximum length: 512
campaign_ids
string

Comma-delimited list of UUIDs representing an array

marketplace
enum<string>
default:amazon.com

Represents an Amazon marketplace. If "all" is specified then the scope is all marketplaces.

Available options:
all,
amazon.com,
amazon.co.uk,
amazon.ca,
amazon.de,
amazon.fr
active
enum<string>
default:true

Whether to return all campaigns or just campaigns that are currently running, not canceled, have not reached their budget, and that you have not been removed from.

Available options:
true,
all
access
enum<string>
default:true

Whether to return all campaigns or just campaigns for brands that you are partnered with

Available options:
true,
all

Response

200
application/json
Success
campaigns
object[]
required
cursor
string | null
required

The cursor to use for the next request, if empty there are no more items to return