You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/tools/apollo.mdx
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@ Enrich data for up to 10 organizations at once using Apollo
179
179
| Parameter | Type | Required | Description |
180
180
| --------- | ---- | -------- | ----------- |
181
181
|`apiKey`| string | Yes | Apollo API key |
182
-
|`organizations`| array | Yes | Array of organizations to enrich \(max 10\). Each item requires `name` and may include `domain`\(e.g., \[\{"name": "Example Corp", "domain": "example.com"\}\]\)|
182
+
|`domains`| array | Yes | Array of company domains to enrich \(max 10, no www. or @, e.g., \["apollo.io", "stripe.com"\]\)|
183
183
184
184
#### Output
185
185
@@ -325,8 +325,10 @@ Update up to 100 existing contacts at once in your Apollo database. Each contact
325
325
326
326
| Parameter | Type | Description |
327
327
| --------- | ---- | ----------- |
328
-
|`message`| string | Confirmation message from Apollo |
329
-
|`job_id`| string | Async job ID \(returned for >100 contacts\)|
@@ -35,7 +35,7 @@ Integrate ElevenLabs into the workflow. Can convert text to speech.
35
35
36
36
### `elevenlabs_tts`
37
37
38
-
Convert TTS using ElevenLabs voices
38
+
Convert text to speech using ElevenLabs voices
39
39
40
40
#### Input
41
41
@@ -45,7 +45,7 @@ Convert TTS using ElevenLabs voices
45
45
|`voiceId`| string | Yes | The ID of the voice to use \(e.g., "21m00Tcm4TlvDq8ikWAM" for Rachel\)|
46
46
|`modelId`| string | No | The ID of the model to use \(e.g., "eleven_multilingual_v2", "eleven_turbo_v2"\). Defaults to eleven_monolingual_v1 |
47
47
|`stability`| number | No | Voice stability setting from 0.0 to 1.0 \(e.g., 0.5 for balanced, 0.75 for more stable\). Higher values produce more consistent output |
48
-
|`similarity`| number | No | Similarity boost setting from 0.0 to 1.0 \(e.g., 0.75 for natural, 1.0 for maximum similarity\). Higher values make the voice more similar to the original |
48
+
|`similarityBoost`| number | No | Similarity boost setting from 0.0 to 1.0 \(e.g., 0.75 for natural, 1.0 for maximum similarity\). Higher values make the voice more similar to the original |
49
49
|`apiKey`| string | Yes | Your ElevenLabs API key |
Run a Sim enrichment to look up data — work email, phone number, company domain, company info, and more — from the fields you map in. Uses the same provider cascade as table enrichments.
16
+
17
+
18
+
19
+
## Tools
20
+
21
+
### `enrichment_run`
22
+
23
+
Run a Sim enrichment (e.g. Work Email, Phone Number) and return its outputs
24
+
25
+
#### Input
26
+
27
+
| Parameter | Type | Required | Description |
28
+
| --------- | ---- | -------- | ----------- |
29
+
|`enrichmentId`| string | Yes | Registry enrichment id \(e.g. "work-email"\)|
30
+
|`inputs`| json | Yes | Map of the enrichment's input ids to values |
31
+
32
+
#### Output
33
+
34
+
The exact fields depend on which enrichment ran. `matched` and `provider` are always present.
35
+
36
+
| Parameter | Type | Description |
37
+
| --------- | ---- | ----------- |
38
+
|`matched`| boolean | Whether the enrichment found a result |
39
+
|`provider`| string | Provider whose result was returned (e.g. "Hunter", "People Data Labs"); `null` on no match |
40
+
|`email`| string | Work email address (Work Email enrichment) |
41
+
|`phone`| string | Phone number (Phone Number enrichment) |
0 commit comments