Skip to content

Integration Guide

This guide will show you, in a simple way, how to integrate Toolzz products into your applications.

Toolzz

All Toolzz APIs use Bearer token authentication. Simply include your API key in the Authorization header:

Terminal window
Authorization: Bearer YOUR_API_KEY

Our APIs follow the REST standard and use the most common HTTP methods:

  • GET - Fetch information
  • POST - Create new data
  • PUT - Update existing data
  • DELETE - Remove data

All API responses are in JSON format and include standard status codes:

{
"success": true,
"data": {
// Response data
},
"message": "Operation performed successfully"
}

To ensure service stability, our APIs have request limits:

  • Standard Plan: 100 requests per minute
  • Consultative Plan: Personalized limits

Error Handling

  • Always handle errors appropriately
  • Check the status codes of the responses
  • Log relevant information about errors

Security

  • Never expose your API keys
  • Use environment variables
  • Validate all received requests

Performance

  • Cache responses when possible
  • Implement automatic retries in case of failure
  • Use pagination for large volumes of data

If you need help with the integration: