Returns the full details of a specific offer. The offer must belong to your account.
Path Parameters
The unique identifier of the offer.
Response Fields
Unique identifier for the offer.
Display name of the offer.
The tracking/click URL for this offer.
The external affiliate platform. One of tune, everflow, or null.
The offer ID on the external platform.
The advertiser ID associated with the offer.
Payout amount for the offer.
Payout model. One of cpa or cpc.
Whether bot click filtering is enabled.
Current status of the offer: active, paused, or archived.
Custom key-value metadata attached to the offer.
ISO 8601 timestamp of when the offer was created.
ISO 8601 timestamp of the last update.
Examples
curl -X GET "https://app.tracklysms.com/api/v2/offers/664f1a2b3c4d5e6f7a8b9c0d" \
-H "X-Api-Key: trk_your_api_key_here"
import requests
offer_id = "664f1a2b3c4d5e6f7a8b9c0d"
response = requests.get(
f"https://app.tracklysms.com/api/v2/offers/{offer_id}",
headers={"X-Api-Key": "trk_your_api_key_here"}
)
offer = response.json()
print(offer["name"], offer["status"])
const offerId = "664f1a2b3c4d5e6f7a8b9c0d";
const response = await fetch(
`https://app.tracklysms.com/api/v2/offers/${offerId}`,
{
headers: {
"X-Api-Key": "trk_your_api_key_here"
}
}
);
const offer = await response.json();
console.log(offer.name, offer.status);
{
"id": "664f1a2b3c4d5e6f7a8b9c0d",
"name": "Summer Promo",
"tracking_url": "https://track.example.com/click?offer_id=123",
"external_platform": "tune",
"external_id": "4521",
"advertiser_id": "adv_882",
"payout": 2.50,
"payout_type": "cpa",
"filter_bots": true,
"status": "active",
"metadata": {
"vertical": "health",
"geo": "US"
},
"created_at": "2025-11-01T14:30:00Z",
"updated_at": "2025-12-15T09:12:00Z"
}
Error Codes
| HTTP Status | Error Code | Description |
|---|
| 401 | unauthorized | API key is missing or invalid. |
| 404 | not_found | No offer exists with the specified ID. |
| 500 | server_error | An unexpected error occurred on the server. |
Next Steps
Offers Overview
Manage offers and payouts
Record Revenue
Track revenue for this offer