Endpoint Playground
Test Crawlora's Forbes person profile 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/person?uri=<uri>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | Yes | Forbes person URI |
{
"code": 200,
"data": {
"profile": {
"name": "Vladimir Lisin",
"uri": "vladimir-lisin",
"final_worth": 26200,
"city": "Moscow",
"country_of_citizenship": "Russia",
"source": "Steel, transport",
"educations": [
{
"school": "Russian Academy of Economics",
"degree": "Doctorate"
}
],
"person_lists": [
{
"name": "Billionaires",
"year": 2026,
"rank": 101,
"position": 101,
"list_uri": "billionaires"
}
]
},
"real_time_net_worth": "$25.5B",
"real_time_net_worth_as_of": "as of 9/21/26",
"real_time_rank": 97,
"list_appearances": 17,
"wealth_history": [
{
"worth": "$16.1B",
"name": "Billionaires",
"date": "March 2017",
"percent": 60.5263
}
],
"biography": [
"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 public Forbes JSON profile data plus the profile page's biography, real-time net-worth display, wealth history, personal facts, editor update, and list-appearance metadata.
{
"code": 200,
"data": {
"profile": {
"name": "Vladimir Lisin",
"uri": "vladimir-lisin",
"final_worth": 26200,
"city": "Moscow",
"country_of_citizenship": "Russia",
"source": "Steel, transport",
"educations": [
{
"school": "Russian Academy of Economics",
"degree": "Doctorate"
}
],
"person_lists": [
{
"name": "Billionaires",
"year": 2026,
"rank": 101,
"position": 101,
"list_uri": "billionaires"
}
]
},
"real_time_net_worth": "$25.5B",
"real_time_net_worth_as_of": "as of 9/21/26",
"real_time_rank": 97,
"list_appearances": 17,
"wealth_history": [
{
"worth": "$16.1B",
"name": "Billionaires",
"date": "March 2017",
"percent": 60.5263
}
],
"biography": [
"Vladimir Lisin is chairman of NLMK Group..."
]
}
}curl "https://api.crawlora.net/api/v1/forbes/person?uri=<uri>" \
-H "x-api-key: $CRAWLORA_API_KEY"