Skip to main content
POST
/
v1beta
/
findall
/
entity-search
Python
from parallel import Parallel

client = Parallel()

response = client.beta.findall.entity_search(
    entity_type="companies",
    objective="AI startups that raised Series A in 2024",
    match_limit=100,
)

for entity in response.entities:
    print(f"{entity.name}: {entity.url}")
{
  "entity_set_id": "<string>",
  "entities": [
    {
      "name": "<string>",
      "url": "<string>",
      "description": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.parallel.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Body

application/json
entity_type
enum<string>
required

Type of entity to search for.

Available options:
people,
companies
objective
string
required

Natural language description of target entities.

match_limit
integer
default:100

Maximum number of entities to return. Must be between 5 and 1000 (inclusive). May return fewer results. Defaults to 100.

Required range: 5 <= x <= 1000

Response

Successful Response

entity_set_id
string
required

Entity set request ID. Example: entity_set_cad0a6d2dec046bd95ae900527d880e7

entities
EntityItem · object[]
required

Ranked list of entities.