POST
/
v1
/
discovery_tasks
Create Discovery Task
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,
  "table": {
    "id": "<string>",
    "min_relevance": 1,
    "run": false,
    "columns": [
      "<string>"
    ]
  },
  "auto_data_sources": true,
  "data_sources": [
    "web_search"
  ]
}'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "status": "created",
  "query": "<string>",
  "desired_num_results": 123,
  "is_exhausted": false,
  "num_results": 123,
  "discovered_num_results": 123,
  "num_search_results": 123,
  "discovered_num_search_results": 123,
  "table_id": "<string>"
}
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

Response

200
application/json

Successful Response

The response is of type object.