Documentation Index
Fetch the complete documentation index at: https://docs.dataforb2b.ai/llms.txt
Use this file to discover all available pages before exploring further.
1. Get your API Key
Sign up at app.dataforb2b.ai and retrieve your API key from the dashboard.
2. Make your first request
curl -X POST https://api.dataforb2b.ai/search/people \
-H "api_key: YOUR_api_key" \
-H "Content-Type: application/json" \
-d '{
"filters": {
"op": "and",
"conditions": [
{"column": "current_title", "type": "like", "value": "Engineer"}
]
},
"count": 5
}'
3. Explore the response
{
"total": 1542300,
"offset": 0,
"count": 5,
"results": [
{
"first_name": "John",
"last_name": "Doe",
"headline": "Senior Software Engineer at Google",
"current_company": "Google",
"current_title": "Senior Software Engineer",
"follower_count": 5420
}
]
}
Next steps
Search People
Learn about all available filters and options
Authentication
Understand how authentication works