Skip to main content
GET
/
api
/
v2
/
campaigns
Returns the list of campaigns.
curl --request GET \
  --url https://my.exnessaffiliates.com/api/v2/campaigns/
{
  "data": [
    {
      "campaign_code": "string",
      "title": "string",
      "link_count": "int",
      "archived": "bool",
      "base_link": "string",
      "link_code": "string",
      "created": "datetime",
      "links": [
        {
          "link": "string",
          "platform": "string",
          "os": "string",
          "tags": [
            "string"
          ],
          "link_code": "string",
          "is_blocked": "bool",
          "is_custom": "bool"
        }
      ],
      "reward_schema": "string"
    }
  ],
  "totals": {
    "count": "int"
  }
}

Documentation Index

Fetch the complete documentation index at: https://exness-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Response

OK

data
object[]
required
Example:
[
{
"campaign_code": "string",
"title": "string",
"link_count": "int",
"archived": "bool",
"base_link": "string",
"link_code": "string",
"created": "datetime",
"links": [
{
"link": "string",
"platform": "string",
"os": "string",
"tags": ["string"],
"link_code": "string",
"is_blocked": "bool",
"is_custom": "bool"
}
],
"reward_schema": "string"
}
]
totals
object
required