Python
from parallel import Parallel
client = Parallel()
candidates = client.beta.findall.candidates(
entity_type="company",
objective="AI startups that raised Series A in 2024",
match_limit=100,
)
for candidate in candidates.candidates:
print(f"{candidate.name}: {candidate.url}")import Parallel from "parallel-web";
const client = new Parallel();
const candidates = await client.beta.findall.candidates({
entity_type: "company",
objective: "AI startups that raised Series A in 2024",
match_limit: 100,
});
for (const candidate of candidates.candidates) {
console.log(`${candidate.name}: ${candidate.url}`);
}HttpResponse<String> response = Unirest.post("https://api.parallel.ai/v1beta/findall/candidates")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"objective\": \"<string>\"\n}")
.asString();curl --request POST \
--url https://api.parallel.ai/v1beta/findall/candidates \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"objective": "<string>"
}
'{
"candidate_set_id": "<string>",
"candidates": [
{
"name": "<string>",
"url": "<string>",
"description": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}FindAll
Generate FindAll Candidates
Deprecated alias for /v1beta/findall/entity-search.
POST
/
v1beta
/
findall
/
candidates
Python
from parallel import Parallel
client = Parallel()
candidates = client.beta.findall.candidates(
entity_type="company",
objective="AI startups that raised Series A in 2024",
match_limit=100,
)
for candidate in candidates.candidates:
print(f"{candidate.name}: {candidate.url}")import Parallel from "parallel-web";
const client = new Parallel();
const candidates = await client.beta.findall.candidates({
entity_type: "company",
objective: "AI startups that raised Series A in 2024",
match_limit: 100,
});
for (const candidate of candidates.candidates) {
console.log(`${candidate.name}: ${candidate.url}`);
}HttpResponse<String> response = Unirest.post("https://api.parallel.ai/v1beta/findall/candidates")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"objective\": \"<string>\"\n}")
.asString();curl --request POST \
--url https://api.parallel.ai/v1beta/findall/candidates \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"objective": "<string>"
}
'{
"candidate_set_id": "<string>",
"candidates": [
{
"name": "<string>",
"url": "<string>",
"description": "<string>"
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Body
application/json
Type of entity to search for.
Available options:
company, people Natural language description of target entities.
Maximum number of candidates to return. Must be between 5 and 1000 (inclusive). May return fewer results. Defaults to 100.
Required range:
5 <= x <= 1000