GET
/
affiliates
curl --request GET \
  --url https://public-api.kiwify.com/v1/affiliates \
  --header 'Authorization: Bearer <token>' \
  --header 'x-kiwify-account-id: <api-key>'
{
  "pagination": {
    "count": 10,
    "page_number": 1,
    "page_size": 10
  },
  "data": [
    {
      "affiliate_id": "c52ccea4-2b5a-4d03-b53a-d9dc96756fc0",
      "name": "MY Affiliate",
      "email": "myaffiliate@mail.com",
      "company_name": "MY Affiliate",
      "director_cpf": "99999999999",
      "company_cnpj": "",
      "product": {
        "id": "aaa86f40-d7ae-11ed-acc6-e1c45591a30e",
        "name": "My Product"
      },
      "commission": 4600,
      "status": "active",
      "created_at": "2023-07-24T15:56:26.189Z"
    }
  ]
}

Authorizations

x-kiwify-account-id
string
header
required
Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

page_size
string
page_number
string
status
string
product_id
string

Response

200
application/json
Get Affiliates
pagination
object
data
any[]
Example:
[]