Welcome to the Haobo API documentation. This guide will help you integrate with our services using POST requests and Python.
All API requests require authentication using an API key. Include your API key in the request header.
Process data with the Haobo engine and return results.
Parameter | Type | Required | Description |
---|---|---|---|
data | String | Yes | The input data to be processed |
mode | String | No | Processing mode (default: standard) |
options | Object | No | Additional processing options |
The API returns a JSON object with the processed data and metadata.
Analyze data and return insights.
Parameter | Type | Required | Description |
---|---|---|---|
input | Array | Yes | Array of data points to analyze |
analysis_type | String | Yes | Type of analysis to perform |
The API uses standard HTTP status codes to indicate success or failure.
Code | Meaning |
---|---|
200 | Success |
400 | Bad Request -- Invalid parameters |
401 | Unauthorized -- Invalid API key |
403 | Forbidden -- API key doesn't have permission |
429 | Too Many Requests -- Rate limit exceeded |
500 | Internal Server Error |
API requests are limited to 1000 requests per hour per API key. Exceeding this limit will result in a 429 error.