Base URL & Environments
Production
All production API requests are made to:
https://api.partners.blaze.me
API Versioning
The API is versioned via the URL path. The current version is v1 for most endpoints, with select endpoints available at v2 and v3.
https://api.partners.blaze.me/api/v1/partner/...
https://api.partners.blaze.me/api/v2/partner/...
https://api.partners.blaze.me/api/v3/partner/...
V2/V3 endpoints provide enhanced functionality while maintaining backward compatibility. Where a newer version exists, it is noted in the API reference alongside the V1 equivalent.
Content Type
All requests and responses use JSON unless otherwise noted:
Content-Type: application/json
Some endpoints (file uploads, signatures) accept multipart/form-data. These are noted in the individual endpoint documentation.
Rate Limiting
API requests may be subject to rate limiting. If you exceed the rate limit, you will receive a 429 Too Many Requests response. Implement exponential backoff in your integration to handle rate limits gracefully.