Recent Usage
Endpoints
Daily Usage
By Endpoint
Getting Started
Use your API key to authenticate requests
1. Fetch Instagram Posts
# Fetch posts for an Instagram user within a date range
curl -X POST /api/v1/instagram/posts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"username": "natgeo",
"from_date": "2026-05-01",
"to_date": "2026-05-22"
}'
2. Access Media Assets
# Each post includes asset URLs that redirect to cached media
curl -L /api/v1/assets/1
# → 302 redirect to S3 presigned URL
3. Check Your Usage
curl /api/v1/metrics \
-H "Authorization: Bearer YOUR_API_KEY"
Authentication: All API requests require a Bearer token in the Authorization header. Create API keys from the tab.