API Documentation
Comprehensive guides and references for all available API platforms
Quick Start
Get started with ApiRizz in 3 simple steps
1
Get API Key
Go to Dashboard > API Keys to generate your key
2
Choose Endpoint
Select a platform and endpoint from the documentation below
3
Make Request
Include your API key in the Authorization header and send request
Example Request
curl
curl -X GET "https://apirizz.my.id/api/v1/tiktok/video?url=https://www.tiktok.com/@user/video/1234567890" -H "Authorization: Bearer YOUR_API_KEY"
Available Platforms
Authentication
All API requests require authentication via API key
Include your API key in the Authorization header using the Bearer token format:
Authorization: Bearer YOUR_API_KEYRate Limits
- Free tier: 100 requests/day
- Basic tier: 1,000 requests/day
- Pro tier: 10,000 requests/day
- Enterprise: Custom limits
Response Format
All responses are returned in JSON format
{
"success": true,
"data": {
// Response data specific to endpoint
},
"meta": {
"timestamp": "2025-01-01T00:00:00.000Z",
"request_id": "req_abc123"
}
}