Skip to content
For LLMsView as Markdown·

Scaleo

Affiliate tracking and management for iGaming with offers, conversions, and statistics.

DetailValue
CategoryiGaming
Base URLhttps://app.scaletrk.com/api/v2
AuthenticationAPI Key (Query)
Endpoints8
Connector keyscaleo

Using Scaleo in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Scaleo from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /network/affiliatesList affiliates
POST /network/affiliatesCreate affiliate
GET /network/offersList offers
POST /network/offersCreate offer
GET /network/conversionsList conversions
POST /network/conversionsCreate conversion
GET /network/reports/statisticsNetwork statistics
GET /affiliate/reports/statisticsAffiliate statistics

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /network/affiliates

List affiliates

DetailValue
Operation IDigaming.listAffiliates
MethodGET
Path/network/affiliates

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Scaleo connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.listAffiliates.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Scaleo API reference.

POST /network/affiliates

Create affiliate

DetailValue
Operation IDigaming.createAffiliate
MethodPOST
Path/network/affiliates

Parameters

No parameters.

Request Body

FieldType
emailstring
companystring
statusstring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Scaleo connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.createAffiliate.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Scaleo API reference.

GET /network/offers

List offers

DetailValue
Operation IDigaming.listOffers
MethodGET
Path/network/offers

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Scaleo connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.listOffers.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Scaleo API reference.

POST /network/offers

Create offer

DetailValue
Operation IDigaming.createOffer
MethodPOST
Path/network/offers

Parameters

No parameters.

Request Body

FieldType
namestring
urlstring
payoutnumber

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Scaleo connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.createOffer.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Scaleo API reference.

GET /network/conversions

List conversions

DetailValue
Operation IDigaming.listConversions
MethodGET
Path/network/conversions

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Scaleo connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.listConversions.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Scaleo API reference.

POST /network/conversions

Create conversion

DetailValue
Operation IDigaming.createConversion
MethodPOST
Path/network/conversions

Parameters

No parameters.

Request Body

FieldType
click_idstring
goal_idstring
revenuenumber

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Scaleo connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.createConversion.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Scaleo API reference.

GET /network/reports/statistics

Network statistics

DetailValue
Operation IDigaming.networkStatistics
MethodGET
Path/network/reports/statistics

Parameters

NameLocationTypeRequired
date_fromquerystringNo
date_toquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Scaleo connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.networkStatistics.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Scaleo API reference.

GET /affiliate/reports/statistics

Affiliate statistics

DetailValue
Operation IDigaming.affiliateStatistics
MethodGET
Path/affiliate/reports/statistics

Parameters

NameLocationTypeRequired
date_fromquerystringNo
date_toquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Scaleo connection from the Connection dropdown.
  3. In the Operation dropdown, select igaming.affiliateStatistics.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Scaleo API reference.