markitel
Three ways to partner — referral links, co-branded embeds, or the keyed Partner API. Smaller creator and IB partners can move quickly; brokers, platforms, and broader API scopes go through review first.
A tracked referral link, commission accrual, and agreement-based payout workflow.
A tracked link, embeddable co-branded widgets, Discord/Telegram relays, and a stats API key.
The keyed Partner API (referral stats + the full signal feed), a public OpenAPI schema, and a TypeScript SDK.
We issue an mkpk_… key for approved partners. Send it as Authorization: Bearer mkpk_… on every request. Keys are scoped least-privilege.
The machine-readable OpenAPI 3.0 schema is public — point your codegen at /api/v1/partners/openapi.json.
A zero-dependency TypeScript client wraps the API (provided directly to approved partners).
read:statsYour 30-day referral aggregates — clicks, signups, accrued commission. Safe for any partner.
read:signalsThe full actionable signal feed (entry/stop/targets, confidence) for redistribution. Contract-approved partners only — a read:stats key gets 403 here.
import { MarkitelPartnerClient } from "@markitel/partner-sdk";
// Server-side only: load this from your secrets manager.
const partnerApiKey = await loadPartnerApiKey();
const client = new MarkitelPartnerClient({ apiKey: partnerApiKey });
const stats = await client.getStats(); // read:stats
for await (const s of client.iterateSignals()) { // read:signals
console.log(s.asset, s.direction, s.entry_price_low, s.stop_loss);
}Real-time feeds. One verdict. Zero guesswork.
Start on the Free $0 plan — then connect supported venues as your workflow moves from signal review to execution.