Skip to content

Collect Companies

GET
/api/ambitionbox/collect
curl --request GET \
--url 'http://localhost:8000/api/ambitionbox/collect?pages=5&limit=100' \
--header 'Authorization: Bearer <token>'

Collect companies across multiple pages.

Query params: pages: Number of pages to scrape (each ~20 companies) industry: Comma-separated filter location: Comma-separated filter

pages
Pages
integer
default: 5 >= 1 <= 25
limit
Limit
integer
default: 100 >= 1 <= 500
industry
Any of:
string
location
Any of:
string
x-workspace-id
Any of:
string

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}