Access 14,000+ film industry companies across 165 countries
All TheBiz API endpoints require JWT authentication. First, obtain an access token:
curl -X POST "https://quilty.app/api/auth/login" \
-H "Content-Type: application/json" \
-d '{"email": "your-email@example.com", "password": "your-password"}'Include the access token in the Authorization header:
curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
"https://quilty.app/api/thebiz/companies"https://quilty.app/api/thebiz/statsGet database statistics and overview information.
curl -H "Authorization: Bearer YOUR_TOKEN" \
"https://quilty.app/api/thebiz/stats"{
"total_companies": 14284,
"countries_count": 165,
"company_types": ["production", "distribution", "sales_agent", ...],
"top_countries": [
{"country": "USA", "count": 2813},
{"country": "UNITED KINGDOM", "count": 1207},
...
]
}/companiesSearch and filter film industry companies with pagination.
| Parameter | Type | Description |
|---|---|---|
| search | string | Search company names (optional) |
| country | string | Filter by country (optional) |
| company_type | string | Filter by company type (optional) |
| page | integer | Page number (default: 1) |
| per_page | integer | Items per page (1-100, default: 20) |
curl -H "Authorization: Bearer YOUR_TOKEN" \
"https://quilty.app/api/thebiz/companies?search=disney&country=USA&per_page=5"{
"companies": [
{
"id": 5750,
"name": "Disney Abc Television",
"company_type": "production",
"country": "USA",
"city": "Burbank",
"market_focus": "international",
"address": "500 S. Buena Vista Street",
"tel": "1 818 460 7004"
}
],
"pagination": {
"page": 1,
"per_page": 5,
"total": 6,
"pages": 2,
"has_next": true,
"has_prev": false
},
"filters": {
"countries": ["USA", "UNITED KINGDOM", ...],
"company_types": ["production", "distribution", ...]
}
}/companies/{id}Get detailed information about a specific company.
curl -H "Authorization: Bearer YOUR_TOKEN" \
"https://quilty.app/api/thebiz/companies/5750"{
"id": 5750,
"name": "Disney Abc Television",
"company_type": "production",
"country": "USA",
"city": "Burbank",
"market_focus": "international",
"address": "500 S. Buena Vista Street",
"tel": "1 818 460 7004"
}/exportExport company data in CSV or JSON format.
| Parameter | Type | Description |
|---|---|---|
| format | string | "csv" or "json" (default: csv) |
| per_page | integer | Max items to export (1-5000, default: 1000) |
| + All search/filter parameters from /companies endpoint | ||
curl -H "Authorization: Bearer YOUR_TOKEN" \
"https://quilty.app/api/thebiz/export?format=csv&country=USA&per_page=100" \
--output companies.csvproduction - Production companiesdistribution - Distribution companiessales_agent - Sales agentsfestival - Film festivalsorganization - Industry organizationstalent_agency - Talent agenciesfinancial - Financial servicesservices - Other services200 - Success401 - Unauthorized (invalid
or missing token)404 - Not found500 - Internal server error{
"detail": "Error message describing what went wrong"
}Rate limits are enforced per authenticated user. If you exceed the limits, you'll receive a 429 status code.
Need help with the TheBiz API? Here are some resources: