Most teams stitch six tools to do this. Capitis ships them as one object graph: every click connects to every conversion connects to every payout, with raw postbacks one tab away.
Command center, end-users, identifiers, links, conversions, reports, payouts, webhooks, API, billing.
Tour the workspace →One REST API with an interactive OpenAPI reference, sandbox keys, signed webhooks, and an audit log.
Tour the workspace →Cross-publisher customer resolution, attribution, and direct commission rules.
Tour the workspace →Create an end-user, attach a hashed identifier, issue a tracked link. Conversions flow back through validated postbacks with deterministic attribution to the original click token.
// One REST API, authenticated with your sandbox key.
const api = "https://api.capitis.app/v1";
const headers = {
Authorization: `Bearer ${CAPITIS_API_KEY}`,
"Content-Type": "application/json",
};
// 1. Browse normalized merchants across networks
const merchants = await fetch(`${api}/merchants?limit=5`, { headers });
// 2. Issue a tracked link for one of your end-users
const link = await fetch(`${api}/links`, {
method: "POST",
headers,
body: JSON.stringify({
end_user_external_id: "u_4f2a91c",
merchant_id: merchantId,
campaign: "spring-cashback-2026",
}),
});
// 3. Clicks and conversions land in your ledger,
// attributed back to the original click token.Sandbox is free. Production access is approved manually while we're in early access — tell us what you're building.