bookingagentinfo.com APIbookingagentinfo.com ↗
Access celebrity profiles, endorsement deals, social media follower counts, representative contacts, and brand data from bookingagentinfo.com via 7 endpoints.
curl -X GET 'https://api.parse.bot/scraper/c5196d3c-5e32-4ecb-91c4-198507e33df3/search_celebrities?page=1&limit=5&query=taylor' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for celebrities by keyword using the Typesense search index. Supports pagination. Returns matching celebrity names, slugs, categories, and links.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| limit | integer | Number of results per page. |
| query | string | Search keyword. Use * for all celebrities. |
{
"type": "object",
"fields": {
"page": "integer current page number",
"items": "array of celebrity objects with name, slug, category, nicknames, image, permalink, bio_preview",
"total": "integer total number of matching celebrities",
"total_pages": "integer total number of pages"
},
"sample": {
"data": {
"page": 1,
"items": [
{
"name": "J’Mari Taylor",
"slug": "jmari-taylor",
"image": "",
"category": [],
"nicknames": [],
"permalink": "https://bookingagentinfo.com/celebrity/jmari-taylor/",
"bio_preview": ""
}
],
"total": 311,
"total_pages": 63
},
"status": "success"
}
}About the bookingagentinfo.com API
The BookingAgentInfo API exposes 7 endpoints covering celebrity profiles, endorsement deals, social media insights, representatives, and brands indexed on bookingagentinfo.com. Use search_celebrities to find talent by keyword with pagination support, get_celebrity_endorsements to pull brand deal history including category and deal type, and get_celebrity_social_insights to retrieve platform-level follower counts and social handles — all returning structured JSON.
Celebrity Search and Directory
The search_celebrities endpoint accepts a query string (use * to list all) and returns paginated results with each celebrity's name, slug, category, nicknames, bio_preview, and permalink. The browse_celebrity_directory endpoint offers an alternative entry point filtered by the first letter of the celebrity's name — including # for number-prefixed names — with the same paginated shape. Both endpoints produce slugs that serve as the required input for the detail endpoints.
Endorsements and Brand Deals
get_celebrity_endorsements takes a celebrity slug and returns an array of endorsement objects, each with brand, brand_url, category, date, and type. The response also includes an AI-generated summary field that describes all deals on record and a total_endorsements integer indicating full deal count. Note that the endpoint surfaces up to 3 individual endorsement records in the endorsements array; the summary covers the broader set.
Social Insights and Representatives
get_celebrity_social_insights returns a metrics object with platforms (follower counts keyed by platform name) and social_accounts (an array of handle/platform pairs). An optional engagement field may appear depending on data availability. To find the agents, managers, or publicists associated with a celebrity or agency, use search_representatives, which queries the representative index by keyword and returns name, slug, category, and permalink per result.
Brands and Industry News
search_brands queries the brand index — brands that appear in celebrity endorsement deals — returning name, slug, image, and permalink per result. get_industry_news_feed requires no inputs and returns a news array of current deals and industry updates pulled from the site's dashboard feed.
- Look up which brands a specific celebrity has endorsed, filtered by category and deal date, using
get_celebrity_endorsements. - Build a talent discovery tool that autocompletes celebrity names and slugs via
search_celebritieswith keyword queries. - Aggregate follower counts across platforms for a roster of talent using
get_celebrity_social_insights. - Find agents or managers associated with a name by querying
search_representativesand following permalink references. - Identify which celebrities endorse a given brand by cross-referencing
search_brandsresults with endorsement detail lookups. - Monitor the entertainment industry news feed via
get_industry_news_feedto track new deal announcements. - Paginate through the full celebrity roster alphabetically using
browse_celebrity_directorywith letter filters for data ingestion.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does bookingagentinfo.com offer an official developer API?+
How many endorsement records does `get_celebrity_endorsements` return, and what fields are included?+
endorsements array, each with brand, brand_url, category, date, and type fields. A total_endorsements integer reflects the full count on record, and a summary string provides an AI-generated overview of all deals regardless of the array limit.Does the API return direct contact details such as phone numbers or email addresses for celebrities or their representatives?+
search_representatives, along with celebrity profile data. Direct contact details such as phone numbers or email addresses are not included in the current response schema. You can fork this API on Parse and revise it to add an endpoint that retrieves deeper representative contact fields if that data becomes accessible.Does `get_celebrity_social_insights` include engagement rate or post-level data?+
platforms object and an array of social handles via social_accounts. An optional engagement field may appear in the metrics object but is not guaranteed. Per-post metrics or historical follower trend data are not part of the current response. You can fork this API on Parse and revise it to add post-level or historical social data if a suitable endpoint is identified.Can I retrieve all celebrities in a given category (e.g., musicians, athletes) directly?+
search_celebrities endpoint returns a category field per result, but there is no dedicated category-filter parameter — filtering by category currently requires querying by keyword or browsing by letter and inspecting the category field in results. You can fork this API on Parse and revise it to add a category-filter parameter to the search endpoint.