Authentication
The Oppizi API is organized around REST. Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication.
To use the API endpoints, you need to add your secret key to the request's authorization header. Except for the public authorization endpoint.
curl https://developer-api.oppizi.com/* \
-H "Authorization: Bearer YOUR_SECRET_KEY"
Authentication Headers
All API requests require authentication using a Bearer token in the Authorization header. The token should be prefixed with "Bearer ".
Example:
headers: new Headers({
'Content-Type': 'application/json',
Authorization: 'Bearer YOUR_SECRET_KEY',
})
Last updated on June 13, 2025