Endpoint Playground
Test Crawlora's Forbes billionaires list API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/forbes/billionaires" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| year | integer | No | Forbes list year | |
| limit | integer | No | Page size (1-100) | |
| start | integer | No | Zero-based offset |
{
"code": 200,
"data": {
"year": 2026,
"count": 3028,
"start": 0,
"limit": 50,
"items": [
{
"uri": "vladimir-lisin",
"rank": 101,
"final_worth": 25500,
"age": 69,
"country_of_citizenship": "Russia",
"source": "Steel, transport",
"status": "D",
"category": "Metals & Mining",
"person_name": "Vladimir Lisin",
"industries": [
"Metals & Mining"
],
"first_name": "Vladimir",
"last_name": "Lisin",
"square_image": "//specials-images.forbesimg.com/...",
"bios": [
"Vladimir Lisin is chairman of NLMK Group..."
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a paginated Forbes billionaires list from the public Forbes JSON feed. The default field set includes ranking, worth, person identity, citizenship, category, industry, organization, image, and biography fields.
{
"code": 200,
"data": {
"year": 2026,
"count": 3028,
"start": 0,
"limit": 50,
"items": [
{
"uri": "vladimir-lisin",
"rank": 101,
"final_worth": 25500,
"age": 69,
"country_of_citizenship": "Russia",
"source": "Steel, transport",
"status": "D",
"category": "Metals & Mining",
"person_name": "Vladimir Lisin",
"industries": [
"Metals & Mining"
],
"first_name": "Vladimir",
"last_name": "Lisin",
"square_image": "//specials-images.forbesimg.com/...",
"bios": [
"Vladimir Lisin is chairman of NLMK Group..."
]
}
]
}
}curl "https://api.crawlora.net/api/v1/forbes/billionaires" \
-H "x-api-key: $CRAWLORA_API_KEY"