Appearance
Scaleo
Affiliate tracking and management for iGaming with offers, conversions, and statistics.
| Detail | Value |
|---|---|
| Category | iGaming |
| Base URL | https://app.scaletrk.com/api/v2 |
| Authentication | API Key (Query) |
| Endpoints | 8 |
| Connector key | scaleo |
Using Scaleo in a workflow
- Go to Connections and click New Connection.
- Pick Scaleo from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /network/affiliates | List affiliates |
POST /network/affiliates | Create affiliate |
GET /network/offers | List offers |
POST /network/offers | Create offer |
GET /network/conversions | List conversions |
POST /network/conversions | Create conversion |
GET /network/reports/statistics | Network statistics |
GET /affiliate/reports/statistics | Affiliate statistics |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /network/affiliates
List affiliates
| Detail | Value |
|---|---|
| Operation ID | igaming.listAffiliates |
| Method | GET |
| Path | /network/affiliates |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Scaleo connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.listAffiliates. - 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
| Detail | Value |
|---|---|
| Operation ID | igaming.createAffiliate |
| Method | POST |
| Path | /network/affiliates |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
email | string |
company | string |
status | string |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Scaleo connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.createAffiliate. - 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
| Detail | Value |
|---|---|
| Operation ID | igaming.listOffers |
| Method | GET |
| Path | /network/offers |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Scaleo connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.listOffers. - 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
| Detail | Value |
|---|---|
| Operation ID | igaming.createOffer |
| Method | POST |
| Path | /network/offers |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
name | string |
url | string |
payout | number |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Scaleo connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.createOffer. - 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
| Detail | Value |
|---|---|
| Operation ID | igaming.listConversions |
| Method | GET |
| Path | /network/conversions |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Scaleo connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.listConversions. - 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
| Detail | Value |
|---|---|
| Operation ID | igaming.createConversion |
| Method | POST |
| Path | /network/conversions |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
click_id | string |
goal_id | string |
revenue | number |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Scaleo connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.createConversion. - 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
| Detail | Value |
|---|---|
| Operation ID | igaming.networkStatistics |
| Method | GET |
| Path | /network/reports/statistics |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
date_from | query | string | No |
date_to | query | string | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Scaleo connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.networkStatistics. - 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
| Detail | Value |
|---|---|
| Operation ID | igaming.affiliateStatistics |
| Method | GET |
| Path | /affiliate/reports/statistics |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
date_from | query | string | No |
date_to | query | string | No |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Scaleo connection from the Connection dropdown.
- In the Operation dropdown, select
igaming.affiliateStatistics. - 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.