POST
/
v1
/
discovery_tasks
curl --request POST \
  --url https://api.extruct.ai/v1/discovery_tasks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "query": "<string>",
  "desired_num_results": 100,
  "notify": true
}'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "status": "created",
  "query": "<string>",
  "desired_num_results": 123,
  "is_exhausted": false,
  "num_results": 123
}

Creates a new company discovery task. All company lists are collected in real-time, mostly using Public Web. You can request up to 10000 results.

Our infrastructure scales depending on a load, but you can expect ~100 companies per minute added to the result set.

Query Examples:

  • sustainable clothing manufacturers in Guangzhou
  • innovation consulting agencies
  • ai startups building llm search
  • emerging streetwear fashion brands in Italy with unique identity
  • help me to find companies that could be useful for a potential partnership for an early HFT fund

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
query
string
required

Ideal description of companies to find

desired_num_results
integer
default:100
Required range: 1 <= x <= 10000
notify
boolean
default:true

Response

200
application/json
Successful Response
id
string
required
created_at
string
required
status
enum<string>
required
Available options:
created,
in_progress,
done,
failed
query
string
required
desired_num_results
integer
required
num_results
integer
required
is_exhausted
boolean
default:false