Base URL
All API requests target the following base URL:https://api.hitorino.tv/v1/streams.
Versioning
The API is versioned via the URL path (/v1). Hitorino increments the version number only for breaking changes. Non-breaking additions — such as new optional fields or new endpoints — are rolled out within the current version without notice. Subscribe to the Hitorino developer changelog to stay informed about API updates.
Request Format
The Hitorino API accepts JSON request bodies. When sending a request body, set theContent-Type header to application/json.
GET endpoints. Request bodies are used for POST and DELETE endpoints that require a payload.
Response Format
All responses — including errors — are returned as JSON. Successful responses return the primary resource object or a wrapper object containing adata array for list endpoints.
GET /streams/{id}) return the object directly at the top level, without a data wrapper.
Rate Limits
Hitorino enforces rate limits to ensure fair usage across all integrations. The limits apply per API key for authenticated requests and per IP address for unauthenticated requests.
When you exceed the rate limit, the API returns a
429 Too Many Requests response. The following response headers are included on every API response to help you track your usage:
Pagination
List endpoints use cursor-based pagination rather than page numbers. This approach is more reliable for real-time data where new items can be inserted between requests. To paginate through results, pass thecursor query parameter with the value of next_cursor from the previous response. When has_more is false, you have reached the end of the result set.
integer
Maximum number of items to return per page. Defaults to
20. Maximum is 100.string
Cursor string returned by the previous response’s
pagination.next_cursor. Omit this parameter to start from the beginning.Error Responses
When a request fails, Hitorino returns an appropriate HTTP status code and a JSON body with a structured error object. This makes it straightforward to programmatically distinguish between different failure types.object
Top-level error container present on all failed responses.