Overview
WeCanTrack is an affiliate tracking API that automatically appends subids to affiliate links, letting you tie every click back to its source. It is ideal for marketers and developers who want granular attribution data across multiple affiliate networks. Getting started requires an API key and a basic understanding of affiliate link structures.
Beginner Tip
Start by testing with a single affiliate link to verify your subid is appended correctly before rolling out to your entire link inventory. Check the docs for the exact parameter name expected by each network.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"name": "Bohemian Rhapsody",
"artist": "Queen",
"album": "A Night at the Opera",
"duration_ms": 354000,
"popularity": 92,
"preview_url": "https://p.scdn.co/mp3-preview/..."
} Field Reference
id Unique identifier for the conversion event. click_id The subid that was appended to the original affiliate link at click time. network Name of the affiliate network that reported the conversion. commission Earned commission amount in the account currency. status Current status of the conversion such as pending, confirmed, or declined. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://api.wecantrack.com/v1/conversions";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Related Tags
Similar APIs
View All →Aftership
Aftership is a shipment tracking API that aggregates tracking data from over 900 carriers worldwide into a single unified interface.
Correios
Correios API provides integration with Brazil's national postal service, allowing you to calculate shipping costs, generate shipping labels, and track packages.
PostNord
PostNord is the official API for Sweden and Denmark's postal service, providing real-time tracking information for parcels in transit.
Pixela
⭐ Beginner's PickPixela is a fun and lightweight API for tracking habits, daily efforts, and personal goals using pixel-style activity graphs similar to GitHub contribution charts.
WhatPulse
⭐ Beginner's PickWhatPulse is a free public API that exposes keyboard, mouse, and network usage statistics collected by the WhatPulse desktop application.