curl -H 'Authorization: Bearer <Auth Token>' \\
'<https://api.brdg.app/api/v4/search/intropath_counts?name=connor+murphy&domain=techstars.com>'
Request: (Host: https://api.brdg.app)
GET /api/v4/search/intropath_counts?name=connor+murphy&domain=techstars.com
Accept: application/json
Authorization: Bearer <Auth Token>
Query parameters
Response examples
Only domain searched
{
"people": [],
"organization": {
"intropath_count": 3,
"org_profile_url": "<https://api.brdg.app/network/example.com>"
}
}
Only name searched (people results are limited to 50 per page)
{
"people": [
{
"name": "John Smith",
"position": "CEO",
"company": "Example Inc",
"company_website": "example.com",
"organisation_link": "example.com",
"degree_of_connection": 1,
"intropath_count": 2
},
{
"name": "John Smith",
"position": "CEO",
"company": "Other company Inc.",
"company_website": "other.com",
"organisation_link": "other.com",
"degree_of_connection": 2,
"intropath_count": 1
}
],
"organization": null,
"page": 1,
"total_pages": 3,
"prev": "<https://api.brdg.app/api/v4/search/intropath_counts?name=john+smith&page=0>",
"next": "<https://api.brdg.app/api/v4/search/intropath_counts?name=john+smith&page=2>"
}
Both name and domain searched
{
"people": [
{
"name": "John Smith",
"position": "CEO",
"company": "Example Inc",
"company_website": "example.com",
"organisation_link": "example.com",
"degree_of_connection": 1,
"intropath_count": 2
}
],
"organization": {
"intropath_count": 3,
"org_profile_url": "<https://api.brdg.app/network/example.com>"
},
"page": 0,
"total_pages": 1
}
Limitations