Partners
Request signer
Build a signed Partner API curl in the browser.
Every Partner API call needs an API key (Authorization: Bearer preferred; X-Api-Key also accepted) and a request signature. Use this tool for local testing with test credentials (orq_pk_test_… / orq_ps_…).
Secrets stay in your browser.
Request signature generator
Builds X-Request-Signature and a ready curl. Paste orq_pk_… + orq_ps_…. JSON bodies are signed compact (no extra spaces).
Headers
Authorization: Bearer orq_pk_test_...
X-Request-Signature: t=<unix_seconds>,v1=<hex>What gets signed
{unix_seconds}.{METHOD}.{pathname}{?query}.{rawBody}HMAC-SHA256 with your signing secret → hex → header above.