feat(i18n): update translations (#1978)

* feat(i18n): update translations

* fix build

---------

Co-authored-by: waleedlatif1 <waleedlatif1@users.noreply.github.com>
This commit is contained in:
Waleed
2025-11-13 18:07:42 -08:00
committed by GitHub
parent b3caef1f31
commit 67d9343022
7 changed files with 3055 additions and 0 deletions

View File

@@ -0,0 +1,574 @@
---
title: Apollo
description: Suchen, anreichern und verwalten Sie Kontakte mit Apollo.io
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="apollo"
color="#EBF212"
/>
{/* MANUAL-CONTENT-START:intro */}
[Apollo.io](https://apollo.io/) ist eine führende Plattform für Vertriebsintelligenz und -engagement, die Benutzern ermöglicht, Kontakte und Unternehmen im großen Maßstab zu finden, anzureichern und zu kontaktieren. Apollo.io kombiniert eine umfangreiche Kontaktdatenbank mit robusten Anreicherungs- und Workflow-Automatisierungstools und unterstützt Vertriebs-, Marketing- und Recruiting-Teams bei der Beschleunigung des Wachstums.
Mit Apollo.io können Sie:
- **Millionen von Kontakten und Unternehmen durchsuchen**: Finden Sie präzise Leads mit erweiterten Filtern
- **Leads und Accounts anreichern**: Füllen Sie fehlende Details mit verifizierten Daten und aktuellen Informationen
- **CRM-Datensätze verwalten und organisieren**: Halten Sie Ihre Personen- und Unternehmensdaten genau und handlungsfähig
- **Outreach automatisieren**: Fügen Sie Kontakte zu Sequenzen hinzu und erstellen Sie Follow-up-Aufgaben direkt aus Apollo.io
In Sim ermöglicht die Apollo.io-Integration Ihren Agenten, zentrale Apollo-Operationen programmatisch durchzuführen:
- **Personen und Unternehmen suchen**: Verwenden Sie `apollo_people_search`, um neue Leads mit flexiblen Filtern zu entdecken.
- **Personendaten anreichern**: Verwenden Sie `apollo_people_enrich`, um Kontakte mit verifizierten Informationen zu ergänzen.
- **Personen in Masse anreichern**: Verwenden Sie `apollo_people_bulk_enrich` für die großflächige Anreicherung mehrerer Kontakte auf einmal.
- **Unternehmen suchen und anreichern**: Verwenden Sie `apollo_company_search` und `apollo_company_enrich`, um wichtige Unternehmensinformationen zu entdecken und zu aktualisieren.
Dies ermöglicht Ihren Agenten, leistungsstarke Workflows für Prospecting, CRM-Anreicherung und Automatisierung zu erstellen, ohne manuelle Dateneingabe oder Tabwechsel. Integrieren Sie Apollo.io als dynamische Datenquelle und CRM-Engine und befähigen Sie Ihre Agenten, Leads nahtlos als Teil ihrer täglichen Arbeit zu identifizieren, zu qualifizieren und zu kontaktieren.
{/* MANUAL-CONTENT-END */}
## Gebrauchsanweisung
Integriert Apollo.io in den Workflow. Suche nach Personen und Unternehmen, reichere Kontaktdaten an, verwalte deine CRM-Kontakte und Konten, füge Kontakte zu Sequenzen hinzu und erstelle Aufgaben.
## Tools
### `apollo_people_search`
Apollo durchsuchen
#### Input
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `person_titles` | array | Nein | Zu suchende Berufsbezeichnungen (z.B. ["CEO", "VP of Sales"]) |
| `person_locations` | array | Nein | Orte, in denen gesucht werden soll (z.B. ["San Francisco, CA", "New York, NY"]) |
| `person_seniorities` | array | Nein | Hierarchieebenen (z.B. ["senior", "executive", "manager"]) |
| `organization_names` | array | Nein | Unternehmensnamen, in denen gesucht werden soll |
| `q_keywords` | string | Nein | Zu suchende Schlüsselwörter |
| `page` | number | Nein | Seitennummer für Paginierung (Standard: 1) |
| `per_page` | number | Nein | Ergebnisse pro Seite (Standard: 25, max: 100) |
#### Output
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `people` | json | Array von Personen, die den Suchkriterien entsprechen |
| `metadata` | json | Paginierungsinformationen einschließlich page, per_page und total_entries |
### `apollo_people_enrich`
Daten für eine einzelne Person mit Apollo anreichern
#### Input
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `first_name` | string | Nein | Vorname der Person |
| `last_name` | string | Nein | Nachname der Person |
| `email` | string | Nein | E-Mail-Adresse der Person |
| `organization_name` | string | Nein | Name des Unternehmens, in dem die Person arbeitet |
| `domain` | string | Nein | Unternehmensdomäne (z.B. apollo.io) |
| `linkedin_url` | string | Nein | LinkedIn-Profil-URL |
| `reveal_personal_emails` | boolean | Nein | Persönliche E-Mail-Adressen aufdecken (verbraucht Credits) |
| `reveal_phone_number` | boolean | Nein | Telefonnummern aufdecken (verbraucht Credits) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `person` | json | Angereicherte Personendaten von Apollo |
| `metadata` | json | Anreicherungsmetadaten einschließlich Anreicherungsstatus |
### `apollo_people_bulk_enrich`
Daten für bis zu 10 Personen gleichzeitig mit Apollo anreichern
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `people` | array | Ja | Array von Personen zur Anreicherung (max. 10) |
| `reveal_personal_emails` | boolean | Nein | Persönliche E-Mail-Adressen anzeigen (verbraucht Credits) |
| `reveal_phone_number` | boolean | Nein | Telefonnummern anzeigen (verbraucht Credits) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `people` | json | Array von angereicherten Personendaten |
| `metadata` | json | Metadaten zur Massenanreicherung einschließlich Gesamt- und angereicherter Anzahl |
### `apollo_organization_search`
Apollo durchsuchen
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `organization_locations` | array | Nein | Zu durchsuchende Unternehmensstandorte |
| `organization_num_employees_ranges` | array | Nein | Bereiche der Mitarbeiterzahl (z.B. ["1-10", "11-50"]) |
| `q_organization_keyword_tags` | array | Nein | Branchen- oder Schlüsselwort-Tags |
| `q_organization_name` | string | Nein | Zu suchender Organisationsname |
| `page` | number | Nein | Seitennummer für Paginierung |
| `per_page` | number | Nein | Ergebnisse pro Seite (max: 100) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `organizations` | json | Array von Organisationen, die den Suchkriterien entsprechen |
| `metadata` | json | Paginierungsinformationen einschließlich page, per_page und total_entries |
### `apollo_organization_enrich`
Daten für eine einzelne Organisation mit Apollo anreichern
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `organization_name` | string | Nein | Name der Organisation \(mindestens einer von organization_name oder domain ist erforderlich\) |
| `domain` | string | Nein | Unternehmensdomäne \(z.B. apollo.io\) \(mindestens einer von domain oder organization_name ist erforderlich\) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `organization` | json | Angereicherte Organisationsdaten von Apollo |
| `metadata` | json | Anreicherungsmetadaten einschließlich des Anreicherungsstatus |
### `apollo_organization_bulk_enrich`
Daten für bis zu 10 Organisationen gleichzeitig mit Apollo anreichern
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `organizations` | array | Ja | Array von zu anreichernden Organisationen \(max. 10\) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `organizations` | json | Array von angereicherten Organisationsdaten |
| `metadata` | json | Metadaten zur Massenanreicherung einschließlich Gesamt- und angereicherte Anzahl |
### `apollo_contact_create`
Einen neuen Kontakt in Ihrer Apollo-Datenbank erstellen
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `first_name` | string | Ja | Vorname des Kontakts |
| `last_name` | string | Ja | Nachname des Kontakts |
| `email` | string | Nein | E-Mail-Adresse des Kontakts |
| `title` | string | Nein | Berufsbezeichnung |
| `account_id` | string | Nein | Apollo-Konto-ID für die Zuordnung |
| `owner_id` | string | Nein | Benutzer-ID des Kontaktinhabers |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `contact` | json | Erstellte Kontaktdaten von Apollo |
| `metadata` | json | Erstellungsmetadaten einschließlich Erstellungsstatus |
### `apollo_contact_update`
Einen bestehenden Kontakt in Ihrer Apollo-Datenbank aktualisieren
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `contact_id` | string | Ja | ID des zu aktualisierenden Kontakts |
| `first_name` | string | Nein | Vorname des Kontakts |
| `last_name` | string | Nein | Nachname des Kontakts |
| `email` | string | Nein | E-Mail-Adresse |
| `title` | string | Nein | Berufsbezeichnung |
| `account_id` | string | Nein | Apollo-Konto-ID |
| `owner_id` | string | Nein | Benutzer-ID des Kontaktinhabers |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `contact` | json | Aktualisierte Kontaktdaten von Apollo |
| `metadata` | json | Aktualisierte Metadaten einschließlich des aktualisierten Status |
### `apollo_contact_search`
Dein Team durchsuchen
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `q_keywords` | string | Nein | Suchbegriffe |
| `contact_stage_ids` | array | Nein | Nach Kontaktphasen-IDs filtern |
| `page` | number | Nein | Seitennummer für Paginierung |
| `per_page` | number | Nein | Ergebnisse pro Seite \(max: 100\) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `contacts` | json | Array von Kontakten, die den Suchkriterien entsprechen |
| `metadata` | json | Paginierungsinformationen einschließlich page, per_page und total_entries |
### `apollo_contact_bulk_create`
Erstelle bis zu 100 Kontakte auf einmal in deiner Apollo-Datenbank. Unterstützt Deduplizierung, um das Erstellen von Duplikaten zu verhindern. Master-Schlüssel erforderlich.
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel \(Master-Schlüssel erforderlich\) |
| `contacts` | array | Ja | Array von zu erstellenden Kontakten \(max. 100\). Jeder Kontakt sollte first_name, last_name und optional email, title, account_id, owner_id enthalten |
| `run_dedupe` | boolean | Nein | Aktiviere Deduplizierung, um das Erstellen von Duplikaten zu verhindern. Bei true werden bestehende Kontakte ohne Änderung zurückgegeben |
#### Output
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `created_contacts` | json | Array neu erstellter Kontakte |
| `existing_contacts` | json | Array bestehender Kontakte \(wenn Deduplizierung aktiviert ist\) |
| `metadata` | json | Metadaten zur Massenerstellung einschließlich Anzahl erstellter und bestehender Kontakte |
### `apollo_contact_bulk_update`
Aktualisieren Sie bis zu 100 bestehende Kontakte gleichzeitig in Ihrer Apollo-Datenbank. Jeder Kontakt muss ein ID-Feld enthalten. Master-Key erforderlich.
#### Input
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel \(Master-Key erforderlich\) |
| `contacts` | array | Ja | Array zu aktualisierender Kontakte \(max. 100\). Jeder Kontakt muss ein ID-Feld enthalten und optional first_name, last_name, email, title, account_id, owner_id |
#### Output
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `updated_contacts` | json | Array erfolgreich aktualisierter Kontakte |
| `failed_contacts` | json | Array von Kontakten, deren Aktualisierung fehlgeschlagen ist |
| `metadata` | json | Metadaten zur Massenaktualisierung einschließlich Anzahl aktualisierter und fehlgeschlagener Kontakte |
### `apollo_account_create`
Erstellen Sie ein neues Konto (Unternehmen) in Ihrer Apollo-Datenbank
#### Input
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `name` | string | Ja | Unternehmensname |
| `website_url` | string | Nein | Unternehmens-Website-URL |
| `phone` | string | Nein | Telefonnummer des Unternehmens |
| `owner_id` | string | Nein | Benutzer-ID des Kontoinhabers |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `account` | json | Erstellte Kontodaten von Apollo |
| `metadata` | json | Erstellungsmetadaten einschließlich Erstellungsstatus |
### `apollo_account_update`
Aktualisieren eines vorhandenen Kontos in Ihrer Apollo-Datenbank
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `account_id` | string | Ja | ID des zu aktualisierenden Kontos |
| `name` | string | Nein | Firmenname |
| `website_url` | string | Nein | Firmen-Website-URL |
| `phone` | string | Nein | Telefonnummer des Unternehmens |
| `owner_id` | string | Nein | Benutzer-ID des Kontoinhabers |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `account` | json | Aktualisierte Kontodaten von Apollo |
| `metadata` | json | Aktualisierungsmetadaten einschließlich Aktualisierungsstatus |
### `apollo_account_search`
Durchsuchen Ihres Teams
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel \(Hauptschlüssel erforderlich\) |
| `q_keywords` | string | Nein | Suchbegriffe für Kontodaten |
| `owner_id` | string | Nein | Filtern nach Benutzer-ID des Kontoinhabers |
| `account_stage_ids` | array | Nein | Filtern nach Kontophase-IDs |
| `page` | number | Nein | Seitennummer für Paginierung |
| `per_page` | number | Nein | Ergebnisse pro Seite \(max: 100\) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `accounts` | json | Array von Konten, die den Suchkriterien entsprechen |
| `metadata` | json | Paginierungsinformationen einschließlich page, per_page und total_entries |
### `apollo_account_bulk_create`
Erstellen Sie bis zu 100 Konten auf einmal in Ihrer Apollo-Datenbank. Hinweis: Apollo wendet keine Deduplizierung an - doppelte Konten können erstellt werden, wenn Einträge ähnliche Namen oder Domains haben. Master-Key erforderlich.
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel \(Master-Key erforderlich\) |
| `accounts` | array | Ja | Array von zu erstellenden Konten \(max. 100\). Jedes Konto sollte einen Namen \(erforderlich\) und optional website_url, phone, owner_id enthalten |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `created_accounts` | json | Array neu erstellter Konten |
| `failed_accounts` | json | Array von Konten, deren Erstellung fehlgeschlagen ist |
| `metadata` | json | Metadaten zur Massenerstellung einschließlich Anzahl erstellter und fehlgeschlagener Konten |
### `apollo_account_bulk_update`
Aktualisieren Sie bis zu 1000 bestehende Konten auf einmal in Ihrer Apollo-Datenbank (höheres Limit als bei Kontakten!). Jedes Konto muss ein id-Feld enthalten. Master-Key erforderlich.
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel \(Master-Key erforderlich\) |
| `accounts` | array | Ja | Array zu aktualisierender Konten \(max. 1000\). Jedes Konto muss ein id-Feld enthalten und optional name, website_url, phone, owner_id |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `updated_accounts` | json | Array der erfolgreich aktualisierten Konten |
| `failed_accounts` | json | Array der Konten, deren Aktualisierung fehlgeschlagen ist |
| `metadata` | json | Metadaten zur Massenaktualisierung, einschließlich der Anzahl aktualisierter und fehlgeschlagener Konten |
### `apollo_opportunity_create`
Erstellen Sie einen neuen Deal für ein Konto in Ihrer Apollo-Datenbank (Master-Key erforderlich)
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel \(Master-Key erforderlich\) |
| `name` | string | Ja | Name der Opportunity/des Deals |
| `account_id` | string | Ja | ID des Kontos, zu dem diese Opportunity gehört |
| `amount` | number | Nein | Geldwert der Opportunity |
| `stage_id` | string | Nein | ID der Deal-Phase |
| `owner_id` | string | Nein | Benutzer-ID des Opportunity-Eigentümers |
| `close_date` | string | Nein | Erwartetes Abschlussdatum \(ISO 8601-Format\) |
| `description` | string | Nein | Beschreibung oder Notizen zur Opportunity |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `opportunity` | json | Erstellte Opportunity-Daten von Apollo |
| `metadata` | json | Erstellungsmetadaten einschließlich Erstellungsstatus |
### `apollo_opportunity_search`
Suchen und listen Sie alle Deals/Opportunities in Ihrem Team auf
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `q_keywords` | string | Nein | Suchbegriffe für die Suche in Opportunity-Namen |
| `account_ids` | array | Nein | Nach bestimmten Account-IDs filtern |
| `stage_ids` | array | Nein | Nach Deal-Phase-IDs filtern |
| `owner_ids` | array | Nein | Nach Opportunity-Besitzer-IDs filtern |
| `page` | number | Nein | Seitennummer für Paginierung |
| `per_page` | number | Nein | Ergebnisse pro Seite \(max: 100\) |
#### Output
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `opportunities` | json | Array von Opportunities, die den Suchkriterien entsprechen |
| `metadata` | json | Paginierungsinformationen einschließlich page, per_page und total_entries |
### `apollo_opportunity_get`
Vollständige Details eines bestimmten Deals/Opportunity anhand der ID abrufen
#### Input
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `opportunity_id` | string | Ja | ID der abzurufenden Opportunity |
#### Output
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `opportunity` | json | Vollständige Opportunity-Daten von Apollo |
| `metadata` | json | Abruf-Metadaten einschließlich Gefunden-Status |
### `apollo_opportunity_update`
Einen bestehenden Deal/Opportunity in Ihrer Apollo-Datenbank aktualisieren
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel |
| `opportunity_id` | string | Ja | ID der zu aktualisierenden Opportunity |
| `name` | string | Nein | Name der Opportunity/des Deals |
| `amount` | number | Nein | Geldwert der Opportunity |
| `stage_id` | string | Nein | ID der Deal-Phase |
| `owner_id` | string | Nein | Benutzer-ID des Opportunity-Eigentümers |
| `close_date` | string | Nein | Erwartetes Abschlussdatum (ISO 8601-Format) |
| `description` | string | Nein | Beschreibung oder Notizen zur Opportunity |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `opportunity` | json | Aktualisierte Opportunity-Daten von Apollo |
| `metadata` | json | Aktualisierungsmetadaten einschließlich Aktualisierungsstatus |
### `apollo_sequence_search`
Suche nach Sequenzen/Kampagnen in deinem Team
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel (Master-Schlüssel erforderlich) |
| `q_name` | string | Nein | Sequenzen nach Namen durchsuchen |
| `active` | boolean | Nein | Nach Aktivitätsstatus filtern (true für aktive Sequenzen, false für inaktive) |
| `page` | number | Nein | Seitennummer für Paginierung |
| `per_page` | number | Nein | Ergebnisse pro Seite (max: 100) |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `sequences` | json | Array von Sequenzen/Kampagnen, die den Suchkriterien entsprechen |
| `metadata` | json | Paginierungsinformationen einschließlich page, per_page und total_entries |
### `apollo_sequence_add_contacts`
Kontakte zu einer Apollo-Sequenz hinzufügen
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel (Master-Schlüssel erforderlich) |
| `sequence_id` | string | Ja | ID der Sequenz, zu der Kontakte hinzugefügt werden sollen |
| `contact_ids` | array | Ja | Array von Kontakt-IDs, die zur Sequenz hinzugefügt werden sollen |
| `emailer_campaign_id` | string | Nein | Optionale E-Mail-Kampagnen-ID |
| `send_email_from_user_id` | string | Nein | Benutzer-ID, von der E-Mails gesendet werden sollen |
#### Output
| Parameter | Type | Beschreibung |
| --------- | ---- | ----------- |
| `contacts_added` | json | Array von Kontakt-IDs, die zur Sequenz hinzugefügt wurden |
| `metadata` | json | Sequenz-Metadaten einschließlich sequence_id und total_added Anzahl |
### `apollo_task_create`
Eine neue Aufgabe in Apollo erstellen
#### Input
| Parameter | Type | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel (Master-Schlüssel erforderlich) |
| `note` | string | Ja | Aufgabennotiz/Beschreibung |
| `contact_id` | string | Nein | Zu verknüpfende Kontakt-ID |
| `account_id` | string | Nein | Zu verknüpfende Account-ID |
| `due_at` | string | Nein | Fälligkeitsdatum im ISO-Format |
| `priority` | string | Nein | Aufgabenpriorität |
| `type` | string | Nein | Aufgabentyp |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `task` | json | Erstellte Aufgabendaten von Apollo |
| `metadata` | json | Erstellungsmetadaten einschließlich des Erstellungsstatus |
### `apollo_task_search`
Suche nach Aufgaben in Apollo
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel (Master-Schlüssel erforderlich) |
| `contact_id` | string | Nein | Nach Kontakt-ID filtern |
| `account_id` | string | Nein | Nach Konto-ID filtern |
| `completed` | boolean | Nein | Nach Abschlussstatus filtern |
| `page` | number | Nein | Seitennummer für Paginierung |
| `per_page` | number | Nein | Ergebnisse pro Seite (max: 100) |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `tasks` | json | Array von Aufgaben, die den Suchkriterien entsprechen |
| `metadata` | json | Paginierungsinformationen einschließlich Seite, pro_Seite und Gesamteinträge |
### `apollo_email_accounts`
Liste des Teams abrufen
#### Eingabe
| Parameter | Typ | Erforderlich | Beschreibung |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Ja | Apollo API-Schlüssel (Master-Schlüssel erforderlich) |
#### Ausgabe
| Parameter | Typ | Beschreibung |
| --------- | ---- | ----------- |
| `email_accounts` | json | Array von Team-E-Mail-Konten, die in Apollo verknüpft sind |
| `metadata` | json | Metadaten einschließlich der Gesamtanzahl von E-Mail-Konten |
## Notizen
- Kategorie: `tools`
- Typ: `apollo`

View File

@@ -0,0 +1,574 @@
---
title: Apollo
description: Busca, enriquece y gestiona contactos con Apollo.io
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="apollo"
color="#EBF212"
/>
{/* MANUAL-CONTENT-START:intro */}
[Apollo.io](https://apollo.io/) es una plataforma líder de inteligencia y participación de ventas que permite a los usuarios encontrar, enriquecer e interactuar con contactos y empresas a gran escala. Apollo.io combina una extensa base de datos de contactos con sólidas herramientas de enriquecimiento y automatización de flujos de trabajo, ayudando a los equipos de ventas, marketing y reclutamiento a acelerar el crecimiento.
Con Apollo.io, puedes:
- **Buscar millones de contactos y empresas**: Encuentra leads precisos utilizando filtros avanzados
- **Enriquecer leads y cuentas**: Completa detalles faltantes con datos verificados e información actualizada
- **Gestionar y organizar registros CRM**: Mantén tus datos de personas y empresas precisos y accionables
- **Automatizar el alcance**: Añade contactos a secuencias y crea tareas de seguimiento directamente desde Apollo.io
En Sim, la integración de Apollo.io permite a tus agentes realizar operaciones básicas de Apollo de forma programática:
- **Buscar personas y empresas**: Usa `apollo_people_search` para descubrir nuevos leads utilizando filtros flexibles.
- **Enriquecer datos de personas**: Usa `apollo_people_enrich` para aumentar contactos con información verificada.
- **Enriquecer personas en masa**: Usa `apollo_people_bulk_enrich` para el enriquecimiento a gran escala de múltiples contactos a la vez.
- **Buscar y enriquecer empresas**: Usa `apollo_company_search` y `apollo_company_enrich` para descubrir y actualizar información clave de empresas.
Esto permite a tus agentes construir flujos de trabajo potentes para prospección, enriquecimiento de CRM y automatización sin entrada manual de datos o cambio de pestañas. Integra Apollo.io como una fuente dinámica de datos y motor CRM — capacitando a tus agentes para identificar, calificar y contactar leads sin problemas como parte de sus operaciones diarias.
{/* MANUAL-CONTENT-END */}
## Instrucciones de uso
Integra Apollo.io en el flujo de trabajo. Busca personas y empresas, enriquece datos de contacto, gestiona tus contactos y cuentas de CRM, añade contactos a secuencias y crea tareas.
## Herramientas
### `apollo_people_search`
Buscar en Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `person_titles` | array | No | Títulos de trabajo para buscar (p. ej., ["CEO", "VP of Sales"]) |
| `person_locations` | array | No | Ubicaciones donde buscar (p. ej., ["San Francisco, CA", "New York, NY"]) |
| `person_seniorities` | array | No | Niveles de antigüedad (p. ej., ["senior", "executive", "manager"]) |
| `organization_names` | array | No | Nombres de empresas donde buscar |
| `q_keywords` | string | No | Palabras clave para buscar |
| `page` | number | No | Número de página para paginación (predeterminado: 1) |
| `per_page` | number | No | Resultados por página (predeterminado: 25, máx: 100) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `people` | json | Array de personas que coinciden con los criterios de búsqueda |
| `metadata` | json | Información de paginación incluyendo página, por_página y total_entradas |
### `apollo_people_enrich`
Enriquecer datos de una persona usando Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `first_name` | string | No | Nombre de la persona |
| `last_name` | string | No | Apellido de la persona |
| `email` | string | No | Dirección de correo electrónico de la persona |
| `organization_name` | string | No | Nombre de la empresa donde trabaja la persona |
| `domain` | string | No | Dominio de la empresa (p. ej., apollo.io) |
| `linkedin_url` | string | No | URL del perfil de LinkedIn |
| `reveal_personal_emails` | boolean | No | Revelar direcciones de correo electrónico personales (usa créditos) |
| `reveal_phone_number` | boolean | No | Revelar números de teléfono (usa créditos) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `person` | json | Datos enriquecidos de la persona desde Apollo |
| `metadata` | json | Metadatos de enriquecimiento incluyendo estado de enriquecimiento |
### `apollo_people_bulk_enrich`
Enriquece datos de hasta 10 personas a la vez usando Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `people` | array | Sí | Array de personas para enriquecer \(máximo 10\) |
| `reveal_personal_emails` | boolean | No | Revelar direcciones de correo electrónico personales \(usa créditos\) |
| `reveal_phone_number` | boolean | No | Revelar números de teléfono \(usa créditos\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `people` | json | Array de datos de personas enriquecidos |
| `metadata` | json | Metadatos de enriquecimiento masivo incluyendo recuentos totales y enriquecidos |
### `apollo_organization_search`
Buscar en Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `organization_locations` | array | No | Ubicaciones de empresas para buscar |
| `organization_num_employees_ranges` | array | No | Rangos de número de empleados \(p. ej., \["1-10", "11-50"\]\) |
| `q_organization_keyword_tags` | array | No | Etiquetas de industria o palabras clave |
| `q_organization_name` | string | No | Nombre de la organización a buscar |
| `page` | number | No | Número de página para paginación |
| `per_page` | number | No | Resultados por página \(máx: 100\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `organizations` | json | Array de organizaciones que coinciden con los criterios de búsqueda |
| `metadata` | json | Información de paginación que incluye page, per_page y total_entries |
### `apollo_organization_enrich`
Enriquecer datos para una sola organización usando Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `organization_name` | string | No | Nombre de la organización \(se requiere al menos uno de organization_name o domain\) |
| `domain` | string | No | Dominio de la empresa \(por ejemplo, apollo.io\) \(se requiere al menos uno de domain u organization_name\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `organization` | json | Datos enriquecidos de la organización desde Apollo |
| `metadata` | json | Metadatos de enriquecimiento que incluyen el estado de enriquecimiento |
### `apollo_organization_bulk_enrich`
Enriquecer datos para hasta 10 organizaciones a la vez usando Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `organizations` | array | Sí | Array de organizaciones para enriquecer \(máximo 10\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `organizations` | json | Array de datos de organizaciones enriquecidos |
| `metadata` | json | Metadatos de enriquecimiento masivo que incluyen recuentos totales y enriquecidos |
### `apollo_contact_create`
Crear un nuevo contacto en tu base de datos de Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `first_name` | string | Sí | Nombre del contacto |
| `last_name` | string | Sí | Apellido del contacto |
| `email` | string | No | Dirección de correo electrónico del contacto |
| `title` | string | No | Cargo laboral |
| `account_id` | string | No | ID de cuenta de Apollo para asociar |
| `owner_id` | string | No | ID de usuario del propietario del contacto |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `contact` | json | Datos del contacto creado en Apollo |
| `metadata` | json | Metadatos de creación incluyendo estado de creación |
### `apollo_contact_update`
Actualizar un contacto existente en tu base de datos de Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `contact_id` | string | Sí | ID del contacto a actualizar |
| `first_name` | string | No | Nombre del contacto |
| `last_name` | string | No | Apellido del contacto |
| `email` | string | No | Dirección de correo electrónico |
| `title` | string | No | Cargo laboral |
| `account_id` | string | No | ID de cuenta de Apollo |
| `owner_id` | string | No | ID de usuario del propietario del contacto |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `contact` | json | Datos de contacto actualizados de Apollo |
| `metadata` | json | Metadatos de actualización incluyendo estado actualizado |
### `apollo_contact_search`
Buscar tu equipo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `q_keywords` | string | No | Palabras clave para buscar |
| `contact_stage_ids` | array | No | Filtrar por IDs de etapa de contacto |
| `page` | number | No | Número de página para paginación |
| `per_page` | number | No | Resultados por página \(máx: 100\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `contacts` | json | Array de contactos que coinciden con los criterios de búsqueda |
| `metadata` | json | Información de paginación incluyendo page, per_page y total_entries |
### `apollo_contact_bulk_create`
Crea hasta 100 contactos a la vez en tu base de datos de Apollo. Admite deduplicación para evitar crear contactos duplicados. Se requiere clave maestra.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `contacts` | array | Sí | Array de contactos para crear \(máx 100\). Cada contacto debe incluir first_name, last_name y opcionalmente email, title, account_id, owner_id |
| `run_dedupe` | boolean | No | Habilitar deduplicación para evitar crear contactos duplicados. Cuando es true, los contactos existentes se devuelven sin modificación |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `created_contacts` | json | Array de contactos recién creados |
| `existing_contacts` | json | Array de contactos existentes \(cuando la deduplicación está habilitada\) |
| `metadata` | json | Metadatos de creación masiva que incluyen recuentos de contactos creados y existentes |
### `apollo_contact_bulk_update`
Actualiza hasta 100 contactos existentes a la vez en tu base de datos de Apollo. Cada contacto debe incluir un campo id. Se requiere clave maestra.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `contacts` | array | Sí | Array de contactos para actualizar \(máximo 100\). Cada contacto debe incluir campo id, y opcionalmente first_name, last_name, email, title, account_id, owner_id |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `updated_contacts` | json | Array de contactos actualizados correctamente |
| `failed_contacts` | json | Array de contactos cuya actualización falló |
| `metadata` | json | Metadatos de actualización masiva que incluyen recuentos de contactos actualizados y fallidos |
### `apollo_account_create`
Crea una nueva cuenta (empresa) en tu base de datos de Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `name` | string | Sí | Nombre de la empresa |
| `website_url` | string | No | URL del sitio web de la empresa |
| `phone` | string | No | Número de teléfono de la empresa |
| `owner_id` | string | No | ID de usuario del propietario de la cuenta |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `account` | json | Datos de la cuenta creada desde Apollo |
| `metadata` | json | Metadatos de creación incluyendo el estado de creación |
### `apollo_account_update`
Actualizar una cuenta existente en tu base de datos de Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `account_id` | string | Sí | ID de la cuenta a actualizar |
| `name` | string | No | Nombre de la empresa |
| `website_url` | string | No | URL del sitio web de la empresa |
| `phone` | string | No | Número de teléfono de la empresa |
| `owner_id` | string | No | ID de usuario del propietario de la cuenta |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `account` | json | Datos de la cuenta actualizada desde Apollo |
| `metadata` | json | Metadatos de actualización incluyendo el estado de actualización |
### `apollo_account_search`
Buscar en tu equipo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `q_keywords` | string | No | Palabras clave para buscar en los datos de la cuenta |
| `owner_id` | string | No | Filtrar por ID de usuario propietario de la cuenta |
| `account_stage_ids` | array | No | Filtrar por IDs de etapa de cuenta |
| `page` | number | No | Número de página para paginación |
| `per_page` | number | No | Resultados por página \(máx: 100\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `accounts` | json | Array de cuentas que coinciden con los criterios de búsqueda |
| `metadata` | json | Información de paginación que incluye page, per_page y total_entries |
### `apollo_account_bulk_create`
Crea hasta 100 cuentas a la vez en tu base de datos de Apollo. Nota: Apollo no aplica deduplicación - se pueden crear cuentas duplicadas si las entradas comparten nombres o dominios similares. Se requiere clave maestra.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `accounts` | array | Sí | Array de cuentas para crear \(máximo 100\). Cada cuenta debe incluir name \(obligatorio\), y opcionalmente website_url, phone, owner_id |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `created_accounts` | json | Array de cuentas recién creadas |
| `failed_accounts` | json | Array de cuentas que no se pudieron crear |
| `metadata` | json | Metadatos de creación masiva que incluyen recuentos de cuentas creadas y fallidas |
### `apollo_account_bulk_update`
Actualiza hasta 1000 cuentas existentes a la vez en tu base de datos de Apollo (¡límite más alto que para contactos!). Cada cuenta debe incluir un campo id. Se requiere clave maestra.
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `accounts` | array | Sí | Array de cuentas para actualizar \(máximo 1000\). Cada cuenta debe incluir el campo id, y opcionalmente name, website_url, phone, owner_id |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `updated_accounts` | json | Array de cuentas actualizadas con éxito |
| `failed_accounts` | json | Array de cuentas que no se pudieron actualizar |
| `metadata` | json | Metadatos de actualización masiva que incluyen recuentos de cuentas actualizadas y fallidas |
### `apollo_opportunity_create`
Crear una nueva oportunidad para una cuenta en tu base de datos de Apollo (se requiere clave maestra)
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | ----------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `name` | string | Sí | Nombre de la oportunidad/negocio |
| `account_id` | string | Sí | ID de la cuenta a la que pertenece esta oportunidad |
| `amount` | number | No | Valor monetario de la oportunidad |
| `stage_id` | string | No | ID de la etapa del negocio |
| `owner_id` | string | No | ID de usuario del propietario de la oportunidad |
| `close_date` | string | No | Fecha de cierre prevista \(formato ISO 8601\) |
| `description` | string | No | Descripción o notas sobre la oportunidad |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `opportunity` | json | Datos de la oportunidad creada desde Apollo |
| `metadata` | json | Metadatos de creación que incluyen el estado de creación |
### `apollo_opportunity_search`
Buscar y listar todas las oportunidades/negocios en tu equipo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `q_keywords` | string | No | Palabras clave para buscar en nombres de oportunidades |
| `account_ids` | array | No | Filtrar por IDs de cuentas específicas |
| `stage_ids` | array | No | Filtrar por IDs de etapas de negocio |
| `owner_ids` | array | No | Filtrar por IDs de propietarios de oportunidades |
| `page` | number | No | Número de página para paginación |
| `per_page` | number | No | Resultados por página \(máx: 100\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `opportunities` | json | Array de oportunidades que coinciden con los criterios de búsqueda |
| `metadata` | json | Información de paginación incluyendo página, por_página y total_entradas |
### `apollo_opportunity_get`
Recuperar detalles completos de un negocio/oportunidad específico por ID
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `opportunity_id` | string | Sí | ID de la oportunidad a recuperar |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `opportunity` | json | Datos completos de la oportunidad desde Apollo |
| `metadata` | json | Metadatos de recuperación incluyendo estado de búsqueda |
### `apollo_opportunity_update`
Actualizar un negocio/oportunidad existente en tu base de datos de Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo |
| `opportunity_id` | string | Sí | ID de la oportunidad a actualizar |
| `name` | string | No | Nombre de la oportunidad/acuerdo |
| `amount` | number | No | Valor monetario de la oportunidad |
| `stage_id` | string | No | ID de la etapa del acuerdo |
| `owner_id` | string | No | ID de usuario del propietario de la oportunidad |
| `close_date` | string | No | Fecha prevista de cierre (formato ISO 8601) |
| `description` | string | No | Descripción o notas sobre la oportunidad |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `opportunity` | json | Datos actualizados de la oportunidad desde Apollo |
| `metadata` | json | Metadatos de actualización incluyendo estado actualizado |
### `apollo_sequence_search`
Buscar secuencias/campañas en tu equipo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo (se requiere clave maestra) |
| `q_name` | string | No | Buscar secuencias por nombre |
| `active` | boolean | No | Filtrar por estado activo (true para secuencias activas, false para inactivas) |
| `page` | number | No | Número de página para paginación |
| `per_page` | number | No | Resultados por página (máx: 100) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `sequences` | json | Array de secuencias/campañas que coinciden con los criterios de búsqueda |
| `metadata` | json | Información de paginación que incluye página, por_página y total_entradas |
### `apollo_sequence_add_contacts`
Añadir contactos a una secuencia de Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `sequence_id` | string | Sí | ID de la secuencia a la que añadir contactos |
| `contact_ids` | array | Sí | Array de IDs de contactos para añadir a la secuencia |
| `emailer_campaign_id` | string | No | ID de campaña de correo electrónico opcional |
| `send_email_from_user_id` | string | No | ID de usuario desde el que enviar correos electrónicos |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `contacts_added` | json | Array de IDs de contactos añadidos a la secuencia |
| `metadata` | json | Metadatos de la secuencia que incluyen sequence_id y recuento total_añadidos |
### `apollo_task_create`
Crear una nueva tarea en Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `note` | string | Sí | Nota/descripción de la tarea |
| `contact_id` | string | No | ID de contacto para asociar |
| `account_id` | string | No | ID de cuenta para asociar |
| `due_at` | string | No | Fecha de vencimiento en formato ISO |
| `priority` | string | No | Prioridad de la tarea |
| `type` | string | No | Tipo de tarea |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `task` | json | Datos de la tarea creada desde Apollo |
| `metadata` | json | Metadatos de creación incluyendo el estado de creación |
### `apollo_task_search`
Buscar tareas en Apollo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
| `contact_id` | string | No | Filtrar por ID de contacto |
| `account_id` | string | No | Filtrar por ID de cuenta |
| `completed` | boolean | No | Filtrar por estado de finalización |
| `page` | number | No | Número de página para paginación |
| `per_page` | number | No | Resultados por página \(máx: 100\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `tasks` | json | Array de tareas que coinciden con los criterios de búsqueda |
| `metadata` | json | Información de paginación incluyendo página, por_página y total_entradas |
### `apollo_email_accounts`
Obtener lista de equipo
#### Entrada
| Parámetro | Tipo | Obligatorio | Descripción |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Sí | Clave API de Apollo \(se requiere clave maestra\) |
#### Salida
| Parámetro | Tipo | Descripción |
| --------- | ---- | ----------- |
| `email_accounts` | json | Array de cuentas de correo electrónico del equipo vinculadas en Apollo |
| `metadata` | json | Metadatos incluyendo el recuento total de cuentas de correo electrónico |
## Notas
- Categoría: `tools`
- Tipo: `apollo`

View File

@@ -0,0 +1,574 @@
---
title: Apollo
description: Recherchez, enrichissez et gérez des contacts avec Apollo.io
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="apollo"
color="#EBF212"
/>
{/* MANUAL-CONTENT-START:intro */}
[Apollo.io](https://apollo.io/) est une plateforme de premier plan en matière d'intelligence commerciale et d'engagement qui permet aux utilisateurs de trouver, d'enrichir et d'interagir avec des contacts et des entreprises à grande échelle. Apollo.io combine une vaste base de données de contacts avec des outils robustes d'enrichissement et d'automatisation des flux de travail, aidant les équipes de vente, de marketing et de recrutement à accélérer leur croissance.
Avec Apollo.io, vous pouvez :
- **Rechercher des millions de contacts et d'entreprises** : Trouvez des prospects précis à l'aide de filtres avancés
- **Enrichir les prospects et les comptes** : Complétez les informations manquantes avec des données vérifiées et des informations à jour
- **Gérer et organiser les enregistrements CRM** : Gardez vos données sur les personnes et les entreprises précises et exploitables
- **Automatiser la prospection** : Ajoutez des contacts à des séquences et créez des tâches de suivi directement depuis Apollo.io
Dans Sim, l'intégration Apollo.io permet à vos agents d'effectuer les opérations essentielles d'Apollo de manière programmatique :
- **Rechercher des personnes et des entreprises** : Utilisez `apollo_people_search` pour découvrir de nouveaux prospects à l'aide de filtres flexibles.
- **Enrichir les données des personnes** : Utilisez `apollo_people_enrich` pour augmenter les contacts avec des informations vérifiées.
- **Enrichir des personnes en masse** : Utilisez `apollo_people_bulk_enrich` pour l'enrichissement à grande échelle de plusieurs contacts à la fois.
- **Rechercher et enrichir des entreprises** : Utilisez `apollo_company_search` et `apollo_company_enrich` pour découvrir et mettre à jour des informations clés sur les entreprises.
Cela permet à vos agents de créer des flux de travail puissants pour la prospection, l'enrichissement CRM et l'automatisation sans saisie manuelle de données ou changement d'onglets. Intégrez Apollo.io comme source dynamique de données et moteur CRM — permettant à vos agents d'identifier, de qualifier et de contacter des prospects de manière transparente dans le cadre de leurs opérations quotidiennes.
{/* MANUAL-CONTENT-END */}
## Instructions d'utilisation
Intègre Apollo.io dans le flux de travail. Recherchez des personnes et des entreprises, enrichissez les données de contact, gérez vos contacts et comptes CRM, ajoutez des contacts aux séquences et créez des tâches.
## Outils
### `apollo_people_search`
Rechercher dans Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ----------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `person_titles` | array | Non | Titres de poste à rechercher \(ex., \["CEO", "VP of Sales"\]\) |
| `person_locations` | array | Non | Lieux à rechercher \(ex., \["San Francisco, CA", "New York, NY"\]\) |
| `person_seniorities` | array | Non | Niveaux d'ancienneté \(ex., \["senior", "executive", "manager"\]\) |
| `organization_names` | array | Non | Noms d'entreprises à rechercher |
| `q_keywords` | string | Non | Mots-clés à rechercher |
| `page` | number | Non | Numéro de page pour la pagination \(par défaut : 1\) |
| `per_page` | number | Non | Résultats par page \(par défaut : 25, max : 100\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `people` | json | Tableau de personnes correspondant aux critères de recherche |
| `metadata` | json | Informations de pagination incluant page, par_page et total_entrées |
### `apollo_people_enrich`
Enrichir les données d'une personne en utilisant Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ----------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `first_name` | string | Non | Prénom de la personne |
| `last_name` | string | Non | Nom de famille de la personne |
| `email` | string | Non | Adresse e-mail de la personne |
| `organization_name` | string | Non | Nom de l'entreprise où travaille la personne |
| `domain` | string | Non | Domaine de l'entreprise \(ex., apollo.io\) |
| `linkedin_url` | string | Non | URL du profil LinkedIn |
| `reveal_personal_emails` | boolean | Non | Révéler les adresses e-mail personnelles \(utilise des crédits\) |
| `reveal_phone_number` | boolean | Non | Révéler les numéros de téléphone \(utilise des crédits\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `person` | json | Données de personne enrichies depuis Apollo |
| `metadata` | json | Métadonnées d'enrichissement incluant le statut d'enrichissement |
### `apollo_people_bulk_enrich`
Enrichir les données pour jusqu'à 10 personnes à la fois en utilisant Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `people` | array | Oui | Tableau de personnes à enrichir \(max 10\) |
| `reveal_personal_emails` | boolean | Non | Révéler les adresses e-mail personnelles \(utilise des crédits\) |
| `reveal_phone_number` | boolean | Non | Révéler les numéros de téléphone \(utilise des crédits\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `people` | json | Tableau de données de personnes enrichies |
| `metadata` | json | Métadonnées d'enrichissement en masse incluant les comptages totaux et enrichis |
### `apollo_organization_search`
Rechercher dans Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `organization_locations` | array | Non | Emplacements d'entreprise à rechercher |
| `organization_num_employees_ranges` | array | Non | Fourchettes de nombre d'employés \(ex. \["1-10", "11-50"\]\) |
| `q_organization_keyword_tags` | array | Non | Tags d'industrie ou mots-clés |
| `q_organization_name` | string | Non | Nom de l'organisation à rechercher |
| `page` | number | Non | Numéro de page pour la pagination |
| `per_page` | number | Non | Résultats par page \(max : 100\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `organizations` | json | Tableau des organisations correspondant aux critères de recherche |
| `metadata` | json | Informations de pagination incluant page, par_page et total_entrées |
### `apollo_organization_enrich`
Enrichir les données pour une seule organisation en utilisant Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `organization_name` | string | Non | Nom de l'organisation \(au moins un des paramètres nom_organisation ou domaine est requis\) |
| `domain` | string | Non | Domaine de l'entreprise \(par exemple, apollo.io\) \(au moins un des paramètres domaine ou nom_organisation est requis\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `organization` | json | Données d'organisation enrichies depuis Apollo |
| `metadata` | json | Métadonnées d'enrichissement incluant le statut d'enrichissement |
### `apollo_organization_bulk_enrich`
Enrichir les données pour jusqu'à 10 organisations à la fois en utilisant Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `organizations` | array | Oui | Tableau des organisations à enrichir \(max 10\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `organizations` | json | Tableau des données d'organisation enrichies |
| `metadata` | json | Métadonnées d'enrichissement en masse incluant les comptages totaux et enrichis |
### `apollo_contact_create`
Créer un nouveau contact dans votre base de données Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `first_name` | string | Oui | Prénom du contact |
| `last_name` | string | Oui | Nom de famille du contact |
| `email` | string | Non | Adresse e-mail du contact |
| `title` | string | Non | Titre du poste |
| `account_id` | string | Non | ID de compte Apollo à associer |
| `owner_id` | string | Non | ID utilisateur du propriétaire du contact |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `contact` | json | Données du contact créé dans Apollo |
| `metadata` | json | Métadonnées de création incluant le statut de création |
### `apollo_contact_update`
Mettre à jour un contact existant dans votre base de données Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `contact_id` | string | Oui | ID du contact à mettre à jour |
| `first_name` | string | Non | Prénom du contact |
| `last_name` | string | Non | Nom de famille du contact |
| `email` | string | Non | Adresse e-mail |
| `title` | string | Non | Titre du poste |
| `account_id` | string | Non | ID de compte Apollo |
| `owner_id` | string | Non | ID utilisateur du propriétaire du contact |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `contact` | json | Données de contact mises à jour depuis Apollo |
| `metadata` | json | Métadonnées de mise à jour incluant le statut mis à jour |
### `apollo_contact_search`
Rechercher votre équipe
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `q_keywords` | string | Non | Mots-clés à rechercher |
| `contact_stage_ids` | array | Non | Filtrer par IDs d'étape de contact |
| `page` | number | Non | Numéro de page pour la pagination |
| `per_page` | number | Non | Résultats par page \(max : 100\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `contacts` | json | Tableau de contacts correspondant aux critères de recherche |
| `metadata` | json | Informations de pagination incluant page, per_page et total_entries |
### `apollo_contact_bulk_create`
Créez jusqu'à 100 contacts à la fois dans votre base de données Apollo. Prend en charge la déduplication pour éviter de créer des contacts en double. Clé principale requise.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo \(clé principale requise\) |
| `contacts` | array | Oui | Tableau de contacts à créer \(max 100\). Chaque contact doit inclure first_name, last_name, et optionnellement email, title, account_id, owner_id |
| `run_dedupe` | boolean | Non | Activer la déduplication pour éviter de créer des contacts en double. Lorsque défini sur true, les contacts existants sont renvoyés sans modification |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `created_contacts` | json | Tableau des contacts nouvellement créés |
| `existing_contacts` | json | Tableau des contacts existants \(lorsque la déduplication est activée\) |
| `metadata` | json | Métadonnées de création en masse incluant le nombre de contacts créés et existants |
### `apollo_contact_bulk_update`
Mettez à jour jusqu'à 100 contacts existants à la fois dans votre base de données Apollo. Chaque contact doit inclure un champ id. Clé principale requise.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo \(clé principale requise\) |
| `contacts` | array | Oui | Tableau de contacts à mettre à jour \(max 100\). Chaque contact doit inclure le champ id, et optionnellement first_name, last_name, email, title, account_id, owner_id |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `updated_contacts` | json | Tableau des contacts mis à jour avec succès |
| `failed_contacts` | json | Tableau des contacts dont la mise à jour a échoué |
| `metadata` | json | Métadonnées de mise à jour en masse incluant le nombre de contacts mis à jour et en échec |
### `apollo_account_create`
Créer un nouveau compte (entreprise) dans votre base de données Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `name` | string | Oui | Nom de l'entreprise |
| `website_url` | string | Non | URL du site web de l'entreprise |
| `phone` | string | Non | Numéro de téléphone de l'entreprise |
| `owner_id` | string | Non | ID utilisateur du propriétaire du compte |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `account` | json | Données du compte créé depuis Apollo |
| `metadata` | json | Métadonnées de création incluant le statut de création |
### `apollo_account_update`
Mettre à jour un compte existant dans votre base de données Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `account_id` | string | Oui | ID du compte à mettre à jour |
| `name` | string | Non | Nom de l'entreprise |
| `website_url` | string | Non | URL du site web de l'entreprise |
| `phone` | string | Non | Numéro de téléphone de l'entreprise |
| `owner_id` | string | Non | ID utilisateur du propriétaire du compte |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `account` | json | Données du compte mis à jour depuis Apollo |
| `metadata` | json | Métadonnées de mise à jour incluant le statut de mise à jour |
### `apollo_account_search`
Rechercher dans votre équipe
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo \(clé principale requise\) |
| `q_keywords` | string | Non | Mots-clés à rechercher dans les données du compte |
| `owner_id` | string | Non | Filtrer par ID utilisateur du propriétaire du compte |
| `account_stage_ids` | array | Non | Filtrer par IDs d'étape de compte |
| `page` | number | Non | Numéro de page pour la pagination |
| `per_page` | number | Non | Résultats par page \(max : 100\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `accounts` | json | Tableau des comptes correspondant aux critères de recherche |
| `metadata` | json | Informations de pagination incluant page, par_page et total_entrées |
### `apollo_account_bulk_create`
Créez jusqu'à 100 comptes à la fois dans votre base de données Apollo. Remarque : Apollo n'applique pas de déduplication - des comptes en double peuvent être créés si les entrées partagent des noms ou domaines similaires. Clé principale requise.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo \(clé principale requise\) |
| `accounts` | array | Oui | Tableau des comptes à créer \(max 100\). Chaque compte doit inclure un nom \(obligatoire\), et éventuellement website_url, téléphone, owner_id |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `created_accounts` | json | Tableau des comptes nouvellement créés |
| `failed_accounts` | json | Tableau des comptes dont la création a échoué |
| `metadata` | json | Métadonnées de création en masse incluant le nombre de comptes créés et échoués |
### `apollo_account_bulk_update`
Mettez à jour jusqu'à 1000 comptes existants à la fois dans votre base de données Apollo (limite plus élevée que pour les contacts !). Chaque compte doit inclure un champ id. Clé principale requise.
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo \(clé principale requise\) |
| `accounts` | array | Oui | Tableau des comptes à mettre à jour \(max 1000\). Chaque compte doit inclure un champ id, et éventuellement name, website_url, phone, owner_id |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `updated_accounts` | json | Tableau des comptes mis à jour avec succès |
| `failed_accounts` | json | Tableau des comptes dont la mise à jour a échoué |
| `metadata` | json | Métadonnées de mise à jour en masse incluant le nombre de comptes mis à jour et échoués |
### `apollo_opportunity_create`
Créer une nouvelle opportunité pour un compte dans votre base de données Apollo (clé principale requise)
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo \(clé principale requise\) |
| `name` | string | Oui | Nom de l'opportunité/affaire |
| `account_id` | string | Oui | ID du compte auquel cette opportunité appartient |
| `amount` | number | Non | Valeur monétaire de l'opportunité |
| `stage_id` | string | Non | ID de l'étape de l'affaire |
| `owner_id` | string | Non | ID utilisateur du propriétaire de l'opportunité |
| `close_date` | string | Non | Date de clôture prévue \(format ISO 8601\) |
| `description` | string | Non | Description ou notes concernant l'opportunité |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `opportunity` | json | Données de l'opportunité créée depuis Apollo |
| `metadata` | json | Métadonnées de création incluant le statut de création |
### `apollo_opportunity_search`
Rechercher et lister toutes les affaires/opportunités dans votre équipe
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `q_keywords` | string | Non | Mots-clés à rechercher dans les noms d'opportunités |
| `account_ids` | array | Non | Filtrer par identifiants de compte spécifiques |
| `stage_ids` | array | Non | Filtrer par identifiants d'étape de transaction |
| `owner_ids` | array | Non | Filtrer par identifiants de propriétaires d'opportunités |
| `page` | number | Non | Numéro de page pour la pagination |
| `per_page` | number | Non | Résultats par page \(max : 100\) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `opportunities` | json | Tableau d'opportunités correspondant aux critères de recherche |
| `metadata` | json | Informations de pagination incluant page, par_page et total_entrées |
### `apollo_opportunity_get`
Récupérer les détails complets d'une transaction/opportunité spécifique par ID
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `opportunity_id` | string | Oui | ID de l'opportunité à récupérer |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `opportunity` | json | Données complètes de l'opportunité depuis Apollo |
| `metadata` | json | Métadonnées de récupération incluant le statut trouvé |
### `apollo_opportunity_update`
Mettre à jour une transaction/opportunité existante dans votre base de données Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo |
| `opportunity_id` | string | Oui | ID de l'opportunité à mettre à jour |
| `name` | string | Non | Nom de l'opportunité/affaire |
| `amount` | number | Non | Valeur monétaire de l'opportunité |
| `stage_id` | string | Non | ID de l'étape de l'affaire |
| `owner_id` | string | Non | ID utilisateur du propriétaire de l'opportunité |
| `close_date` | string | Non | Date de clôture prévue (format ISO 8601) |
| `description` | string | Non | Description ou notes concernant l'opportunité |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `opportunity` | json | Données d'opportunité mises à jour depuis Apollo |
| `metadata` | json | Métadonnées de mise à jour incluant le statut de mise à jour |
### `apollo_sequence_search`
Rechercher des séquences/campagnes dans votre équipe
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | ---------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo (clé principale requise) |
| `q_name` | string | Non | Rechercher des séquences par nom |
| `active` | boolean | Non | Filtrer par statut actif (true pour les séquences actives, false pour les inactives) |
| `page` | number | Non | Numéro de page pour la pagination |
| `per_page` | number | Non | Résultats par page (max : 100) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `sequences` | json | Tableau de séquences/campagnes correspondant aux critères de recherche |
| `metadata` | json | Informations de pagination incluant page, par_page et total_entrées |
### `apollo_sequence_add_contacts`
Ajouter des contacts à une séquence Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo (clé principale requise) |
| `sequence_id` | string | Oui | ID de la séquence à laquelle ajouter des contacts |
| `contact_ids` | array | Oui | Tableau d'ID de contacts à ajouter à la séquence |
| `emailer_campaign_id` | string | Non | ID de campagne d'e-mailing optionnel |
| `send_email_from_user_id` | string | Non | ID utilisateur pour l'envoi des e-mails |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `contacts_added` | json | Tableau d'ID de contacts ajoutés à la séquence |
| `metadata` | json | Métadonnées de séquence incluant sequence_id et nombre total_added |
### `apollo_task_create`
Créer une nouvelle tâche dans Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo (clé principale requise) |
| `note` | string | Oui | Note/description de la tâche |
| `contact_id` | string | Non | ID du contact à associer |
| `account_id` | string | Non | ID du compte à associer |
| `due_at` | string | Non | Date d'échéance au format ISO |
| `priority` | string | Non | Priorité de la tâche |
| `type` | string | Non | Type de tâche |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `task` | json | Données de tâche créées depuis Apollo |
| `metadata` | json | Métadonnées de création incluant le statut de création |
### `apollo_task_search`
Rechercher des tâches dans Apollo
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo (clé principale requise) |
| `contact_id` | string | Non | Filtrer par ID de contact |
| `account_id` | string | Non | Filtrer par ID de compte |
| `completed` | boolean | Non | Filtrer par statut d'achèvement |
| `page` | number | Non | Numéro de page pour la pagination |
| `per_page` | number | Non | Résultats par page (max : 100) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `tasks` | json | Tableau des tâches correspondant aux critères de recherche |
| `metadata` | json | Informations de pagination incluant page, par_page et total_entrées |
### `apollo_email_accounts`
Obtenir la liste de l'équipe
#### Entrée
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Apollo (clé principale requise) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `email_accounts` | json | Tableau des comptes email d'équipe liés dans Apollo |
| `metadata` | json | Métadonnées incluant le nombre total de comptes email |
## Notes
- Catégorie : `tools`
- Type : `apollo`

View File

@@ -1017,3 +1017,22 @@ Lister tous les événements
- Catégorie : `tools`
- Type : `stripe`
| Paramètre | Type | Obligatoire | Description |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | Oui | Clé API Stripe (clé secrète) |
| `limit` | number | Non | Nombre de résultats à retourner (par défaut 10, max 100) |
| `type` | string | Non | Filtrer par type d'événement (par ex., payment_intent.created) |
| `created` | json | Non | Filtrer par date de création (par ex., \{"gt": 1633024800\}) |
#### Sortie
| Paramètre | Type | Description |
| --------- | ---- | ----------- |
| `events` | json | Tableau d'objets événement |
| `metadata` | json | Métadonnées de liste incluant le nombre et has_more |
## Notes
- Catégorie : `tools`
- Type : `stripe`

View File

@@ -0,0 +1,574 @@
---
title: Apollo
description: Apollo.ioで連絡先の検索、情報強化、管理を行う
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="apollo"
color="#EBF212"
/>
{/* MANUAL-CONTENT-START:intro */}
[Apollo.io](https://apollo.io/)は、ユーザーが大規模に連絡先や企業を見つけ、情報を強化し、エンゲージメントを行うことができる、先進的な営業インテリジェンスおよびエンゲージメントプラットフォームです。Apollo.ioは、広範な連絡先データベースと堅牢な情報強化およびワークフロー自動化ツールを組み合わせ、営業、マーケティング、採用チームの成長を加速させるのに役立ちます。
Apollo.ioでは、以下のことが可能です
- **数百万の連絡先と企業を検索**: 高度なフィルターを使用して正確なリードを見つける
- **リードとアカウントの情報を強化**: 検証済みデータと最新情報で不足している詳細を補完
- **CRMレコードの管理と整理**: 人物と企業のデータを正確かつ実用的に保つ
- **アウトリーチの自動化**: Apollo.ioから直接連絡先をシーケンスに追加し、フォローアップタスクを作成
Simでは、Apollo.io統合により、エージェントがプログラムによって主要なApollo操作を実行できます
- **人物と企業の検索**: `apollo_people_search`を使用して、柔軟なフィルターで新しいリードを発見します。
- **人物データの強化**: `apollo_people_enrich`を使用して、連絡先を検証済み情報で補強します。
- **人物の一括強化**: `apollo_people_bulk_enrich`を使用して、複数の連絡先を一度に大規模に強化します。
- **企業の検索と強化**: `apollo_company_search`と`apollo_company_enrich`を使用して、主要な企業情報を発見し更新します。
これにより、エージェントは手動でのデータ入力やタブの切り替えなしに、見込み客の発掘、CRM情報強化、自動化のための強力なワークフローを構築できます。Apollo.ioを動的なデータソースとCRMエンジンとして統合することで、エージェントが日常業務の一部として、リードを特定し、資格を評価し、シームレスにアプローチすることができます。
{/* MANUAL-CONTENT-END */}
## 使用手順
Apollo.ioをワークフローに統合します。人物や企業を検索し、連絡先データを充実させ、CRMの連絡先やアカウントを管理し、連絡先をシーケンスに追加し、タスクを作成できます。
## ツール
### `apollo_people_search`
Apolloを検索
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `person_titles` | array | いいえ | 検索する役職(例:["CEO", "VP of Sales"] |
| `person_locations` | array | いいえ | 検索する場所(例:["San Francisco, CA", "New York, NY"] |
| `person_seniorities` | array | いいえ | 役職レベル(例:["senior", "executive", "manager"] |
| `organization_names` | array | いいえ | 検索対象の企業名 |
| `q_keywords` | string | いいえ | 検索するキーワード |
| `page` | number | いいえ | ページネーションのページ番号デフォルト1 |
| `per_page` | number | いいえ | 1ページあたりの結果数デフォルト25、最大100 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `people` | json | 検索条件に一致する人物の配列 |
| `metadata` | json | ページ、per_page、total_entriesを含むページネーション情報 |
### `apollo_people_enrich`
Apolloを使用して1人のデータを充実させる
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `first_name` | string | いいえ | 人物の名 |
| `last_name` | string | いいえ | 人物の姓 |
| `email` | string | いいえ | 人物のメールアドレス |
| `organization_name` | string | いいえ | 人物が勤務する企業名 |
| `domain` | string | いいえ | 企業ドメインapollo.io |
| `linkedin_url` | string | いいえ | LinkedInプロフィールURL |
| `reveal_personal_emails` | boolean | いいえ | 個人メールアドレスを表示(クレジットを使用) |
| `reveal_phone_number` | boolean | いいえ | 電話番号を表示(クレジットを使用) |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `person` | json | Apolloからの充実した人物データ |
| `metadata` | json | 充実ステータスを含むエンリッチメントメタデータ |
### `apollo_people_bulk_enrich`
Apolloを使用して一度に最大10人のデータを充実させる
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `people` | array | はい | 充実させる人物の配列最大10人 |
| `reveal_personal_emails` | boolean | いいえ | 個人メールアドレスを表示(クレジットを使用) |
| `reveal_phone_number` | boolean | いいえ | 電話番号を表示(クレジットを使用) |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `people` | json | 充実した人物データの配列 |
| `metadata` | json | 合計数と充実数を含む一括充実メタデータ |
### `apollo_organization_search`
Apolloを検索
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `organization_locations` | array | いいえ | 検索する会社の所在地 |
| `organization_num_employees_ranges` | array | いいえ | 従業員数の範囲(例:["1-10", "11-50"] |
| `q_organization_keyword_tags` | array | いいえ | 業界またはキーワードタグ |
| `q_organization_name` | string | いいえ | 検索する組織名 |
| `page` | number | いいえ | ページネーションのページ番号 |
| `per_page` | number | いいえ | ページあたりの結果数最大100 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `organizations` | json | 検索条件に一致する組織の配列 |
| `metadata` | json | ページ、per_page、total_entriesを含むページネーション情報 |
### `apollo_organization_enrich`
Apolloを使用して単一の組織のデータを充実させる
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `organization_name` | string | いいえ | 組織名organization_nameまたはdomainの少なくとも1つが必要 |
| `domain` | string | いいえ | 会社ドメインapollo.iodomainまたはorganization_nameの少なくとも1つが必要 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `organization` | json | Apolloからの充実した組織データ |
| `metadata` | json | 充実ステータスを含むエンリッチメントメタデータ |
### `apollo_organization_bulk_enrich`
Apolloを使用して最大10の組織のデータを一度に充実させる
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `organizations` | array | はい | 充実させる組織の配列最大10 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `organizations` | json | 充実した組織データの配列 |
| `metadata` | json | 合計数と充実数を含む一括エンリッチメントメタデータ |
### `apollo_contact_create`
Apolloデータベースに新しい連絡先を作成する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `first_name` | string | はい | 連絡先の名 |
| `last_name` | string | はい | 連絡先の姓 |
| `email` | string | いいえ | 連絡先のメールアドレス |
| `title` | string | いいえ | 役職 |
| `account_id` | string | いいえ | 関連付けるApolloアカウントID |
| `owner_id` | string | いいえ | 連絡先所有者のユーザーID |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `contact` | json | Apolloから作成された連絡先データ |
| `metadata` | json | 作成ステータスを含む作成メタデータ |
### `apollo_contact_update`
Apolloデータベースの既存の連絡先を更新する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `contact_id` | string | はい | 更新する連絡先のID |
| `first_name` | string | いいえ | 連絡先の名 |
| `last_name` | string | いいえ | 連絡先の姓 |
| `email` | string | いいえ | メールアドレス |
| `title` | string | いいえ | 役職 |
| `account_id` | string | いいえ | Apolloアカウント ID |
| `owner_id` | string | いいえ | 連絡先所有者のユーザーID |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `contact` | json | Apolloから更新された連絡先データ |
| `metadata` | json | 更新ステータスを含む更新メタデータ |
### `apollo_contact_search`
チームを検索
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `q_keywords` | string | いいえ | 検索するキーワード |
| `contact_stage_ids` | array | いいえ | 連絡先ステージIDでフィルタリング |
| `page` | number | いいえ | ページネーションのページ番号 |
| `per_page` | number | いいえ | 1ページあたりの結果数最大100 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `contacts` | json | 検索条件に一致する連絡先の配列 |
| `metadata` | json | ページ、per_page、total_entriesを含むページネーション情報 |
### `apollo_contact_bulk_create`
Apolloデータベースに一度に最大100件の連絡先を作成します。重複を防ぐための重複排除をサポートしています。マスターキーが必要です。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `contacts` | array | はい | 作成する連絡先の配列最大100件。各連絡先にはfirst_name、last_nameを含め、オプションでemail、title、account_id、owner_idを含めることができます |
| `run_dedupe` | boolean | いいえ | 重複する連絡先の作成を防ぐための重複排除を有効にします。trueの場合、既存の連絡先は変更せずに返されます |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `created_contacts` | json | 新しく作成された連絡先の配列 |
| `existing_contacts` | json | 既存の連絡先の配列(重複排除が有効な場合) |
| `metadata` | json | 作成された連絡先と既存の連絡先の数を含む一括作成メタデータ |
### `apollo_contact_bulk_update`
Apolloデータベース内の最大100件の既存の連絡先を一度に更新します。各連絡先にはidフィールドが含まれている必要があります。マスターキーが必要です。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `contacts` | array | はい | 更新する連絡先の配列最大100件。各連絡先にはidフィールドが必須で、オプションでfirst_name、last_name、email、title、account_id、owner_idを含めることができます |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `updated_contacts` | json | 正常に更新された連絡先の配列 |
| `failed_contacts` | json | 更新に失敗した連絡先の配列 |
| `metadata` | json | 更新された連絡先と失敗した連絡先の数を含む一括更新メタデータ |
### `apollo_account_create`
Apolloデータベースに新しいアカウント会社を作成します
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `name` | string | はい | 会社名 |
| `website_url` | string | いいえ | 会社のウェブサイトURL |
| `phone` | string | いいえ | 会社の電話番号 |
| `owner_id` | string | いいえ | アカウント所有者のユーザーID |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `account` | json | Apolloから作成されたアカウントデータ |
| `metadata` | json | 作成ステータスを含む作成メタデータ |
### `apollo_account_update`
Apolloデータベース内の既存のアカウントを更新する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `account_id` | string | はい | 更新するアカウントのID |
| `name` | string | いいえ | 会社名 |
| `website_url` | string | いいえ | 会社のウェブサイトURL |
| `phone` | string | いいえ | 会社の電話番号 |
| `owner_id` | string | いいえ | アカウント所有者のユーザーID |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `account` | json | Apolloから更新されたアカウントデータ |
| `metadata` | json | 更新ステータスを含む更新メタデータ |
### `apollo_account_search`
チームを検索する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `q_keywords` | string | いいえ | アカウントデータで検索するキーワード |
| `owner_id` | string | いいえ | アカウント所有者のユーザーIDでフィルタリング |
| `account_stage_ids` | array | いいえ | アカウントステージIDでフィルタリング |
| `page` | number | いいえ | ページネーションのページ番号 |
| `per_page` | number | いいえ | 1ページあたりの結果数最大100 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `accounts` | json | 検索条件に一致するアカウントの配列 |
| `metadata` | json | ページ、per_page、total_entriesを含むページネーション情報 |
### `apollo_account_bulk_create`
Apolloデータベースに一度に最大100のアカウントを作成できます。注意Apolloは重複排除を適用しないため、エントリが類似した名前やドメインを共有している場合、重複アカウントが作成される可能性があります。マスターキーが必要です。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `accounts` | array | はい | 作成するアカウントの配列最大100。各アカウントには名前必須、およびオプションでwebsite_url、phone、owner_idを含める必要があります |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `created_accounts` | json | 新しく作成されたアカウントの配列 |
| `failed_accounts` | json | 作成に失敗したアカウントの配列 |
| `metadata` | json | 作成されたアカウントと失敗したアカウントの数を含む一括作成メタデータ |
### `apollo_account_bulk_update`
Apolloデータベースで一度に最大1000の既存アカウントを更新します連絡先よりも高い制限。各アカウントにはidフィールドを含める必要があります。マスターキーが必要です。
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `accounts` | array | はい | 更新するアカウントの配列最大1000。各アカウントにはidフィールドを含め、オプションでname、website_url、phone、owner_idを含める必要があります |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `updated_accounts` | json | 正常に更新されたアカウントの配列 |
| `failed_accounts` | json | 更新に失敗したアカウントの配列 |
| `metadata` | json | 更新および失敗したアカウント数を含む一括更新メタデータ |
### `apollo_opportunity_create`
Apolloデータベースのアカウントに新しい取引を作成しますマスターキーが必要
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `name` | string | はい | 商談/取引の名前 |
| `account_id` | string | はい | この商談が属するアカウントのID |
| `amount` | number | いいえ | 商談の金銭的価値 |
| `stage_id` | string | いいえ | 取引ステージのID |
| `owner_id` | string | いいえ | 商談所有者のユーザーID |
| `close_date` | string | いいえ | 予想クローズ日ISO 8601形式 |
| `description` | string | いいえ | 商談に関する説明またはメモ |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `opportunity` | json | Apolloから作成された商談データ |
| `metadata` | json | 作成ステータスを含む作成メタデータ |
### `apollo_opportunity_search`
チーム内のすべての取引/商談を検索してリスト表示する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `q_keywords` | string | いいえ | 案件名で検索するキーワード |
| `account_ids` | array | いいえ | 特定のアカウントIDでフィルタリング |
| `stage_ids` | array | いいえ | 商談ステージIDでフィルタリング |
| `owner_ids` | array | いいえ | 案件担当者IDでフィルタリング |
| `page` | number | いいえ | ページネーション用のページ番号 |
| `per_page` | number | いいえ | 1ページあたりの結果数最大100 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `opportunities` | json | 検索条件に一致する案件の配列 |
| `metadata` | json | ページ、per_page、total_entriesを含むページネーション情報 |
### `apollo_opportunity_get`
IDで特定の商談/案件の詳細情報を取得する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `opportunity_id` | string | はい | 取得する案件のID |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `opportunity` | json | Apolloからの完全な案件データ |
| `metadata` | json | 検索状態を含む取得メタデータ |
### `apollo_opportunity_update`
Apolloデータベース内の既存の商談/案件を更新する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキー |
| `opportunity_id` | string | はい | 更新する案件のID |
| `name` | string | いいえ | 案件/取引の名前 |
| `amount` | number | いいえ | 案件の金銭的価値 |
| `stage_id` | string | いいえ | 取引ステージのID |
| `owner_id` | string | いいえ | 案件所有者のユーザーID |
| `close_date` | string | いいえ | 予定成約日ISO 8601形式 |
| `description` | string | いいえ | 案件に関する説明やメモ |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `opportunity` | json | Apolloからの更新された案件データ |
| `metadata` | json | 更新ステータスを含む更新メタデータ |
### `apollo_sequence_search`
チーム内のシーケンス/キャンペーンを検索する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `q_name` | string | いいえ | 名前でシーケンスを検索 |
| `active` | boolean | いいえ | アクティブステータスでフィルタリングアクティブなシーケンスはtrue、非アクティブはfalse |
| `page` | number | いいえ | ページネーションのページ番号 |
| `per_page` | number | いいえ | 1ページあたりの結果数最大100 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `sequences` | json | 検索条件に一致するシーケンス/キャンペーンの配列 |
| `metadata` | json | ページ、per_page、total_entriesを含むページネーション情報 |
### `apollo_sequence_add_contacts`
Apolloシーケンスに連絡先を追加する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `sequence_id` | string | はい | 連絡先を追加するシーケンスのID |
| `contact_ids` | array | はい | シーケンスに追加する連絡先IDの配列 |
| `emailer_campaign_id` | string | いいえ | オプションのメーラーキャンペーンID |
| `send_email_from_user_id` | string | いいえ | メールの送信元となるユーザーID |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `contacts_added` | json | シーケンスに追加された連絡先IDの配列 |
| `metadata` | json | sequence_idとtotal_added数を含むシーケンスメタデータ |
### `apollo_task_create`
Apolloで新しいタスクを作成する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `note` | string | はい | タスクのメモ/説明 |
| `contact_id` | string | いいえ | 関連付ける連絡先ID |
| `account_id` | string | いいえ | 関連付けるアカウントID |
| `due_at` | string | いいえ | ISO形式の期日 |
| `priority` | string | いいえ | タスクの優先度 |
| `type` | string | いいえ | タスクのタイプ |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `task` | json | Apolloから作成されたタスクデータ |
| `metadata` | json | 作成ステータスを含む作成メタデータ |
### `apollo_task_search`
Apolloでタスクを検索する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
| `contact_id` | string | いいえ | 連絡先IDでフィルタリング |
| `account_id` | string | いいえ | アカウントIDでフィルタリング |
| `completed` | boolean | いいえ | 完了ステータスでフィルタリング |
| `page` | number | いいえ | ページネーション用のページ番号 |
| `per_page` | number | いいえ | 1ページあたりの結果数最大100 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `tasks` | json | 検索条件に一致するタスクの配列 |
| `metadata` | json | ページ、per_page、total_entriesを含むページネーション情報 |
### `apollo_email_accounts`
チームのリストを取得する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | はい | Apollo APIキーマスターキーが必要 |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `email_accounts` | json | Apolloにリンクされているチームのメールアカウントの配列 |
| `metadata` | json | メールアカウントの総数を含むメタデータ |
## メモ
- カテゴリー: `tools`
- タイプ: `apollo`

View File

@@ -0,0 +1,574 @@
---
title: Apollo
description: 使用 Apollo.io 搜索、丰富和管理联系人
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="apollo"
color="#EBF212"
/>
{/* MANUAL-CONTENT-START:intro */}
[Apollo.io](https://apollo.io/) 是一个领先的销售情报和互动平台帮助用户大规模地查找、丰富和互动联系人及公司。Apollo.io 将广泛的联系人数据库与强大的数据丰富和工作流自动化工具相结合,帮助销售、市场营销和招聘团队加速增长。
使用 Apollo.io您可以
- **搜索数百万联系人和公司**:使用高级筛选器找到精准的潜在客户
- **丰富潜在客户和账户信息**:用经过验证的数据和最新信息补充缺失的细节
- **管理和组织 CRM 记录**:保持人员和公司数据的准确性和可操作性
- **自动化外联**:直接从 Apollo.io 将联系人添加到序列中并创建后续任务
在 Sim 中Apollo.io 集成允许您的代理以编程方式执行核心 Apollo 操作:
- **搜索人员和公司**:使用 `apollo_people_search` 通过灵活的筛选器发现新的潜在客户。
- **丰富人员数据**:使用 `apollo_people_enrich` 为联系人补充经过验证的信息。
- **批量丰富人员数据**:使用 `apollo_people_bulk_enrich` 一次性大规模丰富多个联系人。
- **搜索和丰富公司信息**:使用 `apollo_company_search` 和 `apollo_company_enrich` 发现和更新关键的公司信息。
这使您的代理能够构建强大的工作流用于潜在客户开发、CRM 数据丰富和自动化,而无需手动输入数据或切换标签页。将 Apollo.io 集成为动态数据源和 CRM 引擎,帮助您的代理在日常操作中无缝识别、筛选和联系潜在客户。
{/* MANUAL-CONTENT-END */}
## 使用说明
将 Apollo.io 集成到工作流程中。搜索人员和公司,丰富联系数据,管理您的 CRM 联系人和账户,将联系人添加到序列中,并创建任务。
## 工具
### `apollo_people_search`
搜索 Apollo
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `person_titles` | array | 否 | 要搜索的职位 \(例如,\["CEO", "VP of Sales"\]\) |
| `person_locations` | array | 否 | 要搜索的地点 \(例如,\["San Francisco, CA", "New York, NY"\]\) |
| `person_seniorities` | array | 否 | 职级 \(例如,\["senior", "executive", "manager"\]\) |
| `organization_names` | array | 否 | 要搜索的公司名称 |
| `q_keywords` | string | 否 | 要搜索的关键词 |
| `page` | number | 否 | 分页的页码 \(默认值1\) |
| `per_page` | number | 否 | 每页的结果数 \(默认值25最大值100\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `people` | json | 符合搜索条件的人员数组 |
| `metadata` | json | 包括页码、每页条目数和总条目数的分页信息 |
### `apollo_people_enrich`
使用 Apollo 丰富单个人的数据
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `first_name` | string | 否 | 该人的名字 |
| `last_name` | string | 否 | 该人的姓氏 |
| `email` | string | 否 | 该人的电子邮件地址 |
| `organization_name` | string | 否 | 该人工作的公司名称 |
| `domain` | string | 否 | 公司域名 \(例如apollo.io\) |
| `linkedin_url` | string | 否 | LinkedIn 个人资料 URL |
| `reveal_personal_emails` | boolean | 否 | 显示个人电子邮件地址 \(使用积分\) |
| `reveal_phone_number` | boolean | 否 | 显示电话号码 \(使用积分\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `person` | json | 来自 Apollo 的丰富人员数据 |
| `metadata` | json | 包括丰富状态的元数据 |
### `apollo_people_bulk_enrich`
使用 Apollo 一次丰富最多 10 人的数据
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `people` | array | 是 | 要丰富的人员数组(最多 10 人) |
| `reveal_personal_emails` | boolean | 否 | 显示个人电子邮件地址(使用积分) |
| `reveal_phone_number` | boolean | 否 | 显示电话号码(使用积分) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `people` | json | 丰富的人员数据数组 |
| `metadata` | json | 批量丰富元数据,包括总数和丰富计数 |
### `apollo_organization_search`
搜索 Apollo
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `organization_locations` | array | 否 | 要搜索的公司位置 |
| `organization_num_employees_ranges` | array | 否 | 员工数量范围(例如,\["1-10", "11-50"\] |
| `q_organization_keyword_tags` | array | 否 | 行业或关键词标签 |
| `q_organization_name` | string | 否 | 要搜索的组织名称 |
| `page` | number | 否 | 分页的页码 |
| `per_page` | number | 否 | 每页结果数最多100 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `organizations` | json | 符合搜索条件的组织数组 |
| `metadata` | json | 分页信息,包括页面、每页条目数和总条目数 |
### `apollo_organization_enrich`
使用 Apollo 为单个组织丰富数据
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `organization_name` | string | 否 | 组织名称(组织名称或域名至少需要一个) |
| `domain` | string | 否 | 公司域名例如apollo.io域名或组织名称至少需要一个 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `organization` | json | 来自 Apollo 的丰富组织数据 |
| `metadata` | json | 丰富的元数据,包括丰富状态 |
### `apollo_organization_bulk_enrich`
使用 Apollo 一次为最多 10 个组织丰富数据
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `organizations` | array | 是 | 要丰富的组织数组(最多 10 个) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `organizations` | json | 丰富的组织数据数组 |
| `metadata` | json | 批量丰富的元数据,包括总数和丰富的计数 |
### `apollo_contact_create`
在您的 Apollo 数据库中创建一个新联系人
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `first_name` | string | 是 | 联系人的名字 |
| `last_name` | string | 是 | 联系人的姓氏 |
| `email` | string | 否 | 联系人的电子邮件地址 |
| `title` | string | 否 | 职位名称 |
| `account_id` | string | 否 | 要关联的 Apollo 账户 ID |
| `owner_id` | string | 否 | 联系人所有者的用户 ID |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `contact` | json | 从 Apollo 创建的联系人数据 |
| `metadata` | json | 创建元数据,包括创建状态 |
### `apollo_contact_update`
更新您 Apollo 数据库中的现有联系人
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `contact_id` | string | 是 | 要更新的联系人的 ID |
| `first_name` | string | 否 | 联系人的名字 |
| `last_name` | string | 否 | 联系人的姓氏 |
| `email` | string | 否 | 电子邮件地址 |
| `title` | string | 否 | 职位名称 |
| `account_id` | string | 否 | Apollo 账户 ID |
| `owner_id` | string | 否 | 联系人所有者的用户 ID |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `contact` | json | 来自 Apollo 的更新联系人数据 |
| `metadata` | json | 更新元数据,包括更新状态 |
### `apollo_contact_search`
搜索您的团队
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `q_keywords` | string | 否 | 要搜索的关键字 |
| `contact_stage_ids` | array | 否 | 按联系人阶段 ID 过滤 |
| `page` | number | 否 | 分页的页码 |
| `per_page` | number | 否 | 每页结果数 \(最大值100\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `contacts` | json | 符合搜索条件的联系人数组 |
| `metadata` | json | 分页信息,包括页码、每页条目数和总条目数 |
### `apollo_contact_bulk_create`
在您的 Apollo 数据库中一次创建最多 100 个联系人。支持去重以防止创建重复联系人。需要主密钥。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 \(需要主密钥\) |
| `contacts` | array | 是 | 要创建的联系人数组 \(最多 100 个\)。每个联系人应包括 first_name、last_name以及可选的 email、title、account_id、owner_id |
| `run_dedupe` | boolean | 否 | 启用去重以防止创建重复联系人。当为 true 时,返回现有联系人而不进行修改 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `created_contacts` | json | 新创建联系人数组 |
| `existing_contacts` | json | 已存在联系人数组(当启用去重时) |
| `metadata` | json | 批量创建元数据,包括创建和已存在联系人的计数 |
### `apollo_contact_bulk_update`
一次更新最多 100 个现有联系人到您的 Apollo 数据库中。每个联系人必须包含一个 id 字段。需要主密钥。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `contacts` | array | 是 | 要更新的联系人数组(最多 100 个)。每个联系人必须包含 id 字段,并可选包含 first_name、last_name、email、title、account_id、owner_id |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `updated_contacts` | json | 成功更新的联系人数组 |
| `failed_contacts` | json | 更新失败的联系人数组 |
| `metadata` | json | 批量更新元数据,包括更新和失败联系人的计数 |
### `apollo_account_create`
在您的 Apollo 数据库中创建一个新账户(公司)
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `name` | string | 是 | 公司名称 |
| `website_url` | string | 否 | 公司网站 URL |
| `phone` | string | 否 | 公司电话号码 |
| `owner_id` | string | 否 | 账户所有者的用户 ID |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `account` | json | 从 Apollo 创建的账户数据 |
| `metadata` | json | 包括创建状态的元数据 |
### `apollo_account_update`
更新 Apollo 数据库中的现有账户
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `account_id` | string | 是 | 要更新的账户 ID |
| `name` | string | 否 | 公司名称 |
| `website_url` | string | 否 | 公司网站 URL |
| `phone` | string | 否 | 公司电话号码 |
| `owner_id` | string | 否 | 账户所有者的用户 ID |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `account` | json | 从 Apollo 更新的账户数据 |
| `metadata` | json | 包括更新状态的元数据 |
### `apollo_account_search`
搜索您的团队
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `q_keywords` | string | 否 | 在账户数据中搜索的关键字 |
| `owner_id` | string | 否 | 按账户所有者用户 ID 过滤 |
| `account_stage_ids` | array | 否 | 按账户阶段 ID 过滤 |
| `page` | number | 否 | 分页的页码 |
| `per_page` | number | 否 | 每页结果数最大值100 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `accounts` | json | 符合搜索条件的账户数组 |
| `metadata` | json | 分页信息,包括页面、每页条目数和总条目数 |
### `apollo_account_bulk_create`
在您的 Apollo 数据库中一次最多创建 100 个账户。注意Apollo 不会进行去重处理——如果条目具有相似的名称或域名,可能会创建重复账户。需要主密钥。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `accounts` | array | 是 | 要创建的账户数组(最多 100 个)。每个账户应包括名称(必需),以及可选的 website_url、phone、owner_id |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `created_accounts` | json | 新创建账户的数组 |
| `failed_accounts` | json | 创建失败的账户数组 |
| `metadata` | json | 批量创建的元数据,包括创建和失败账户的计数 |
### `apollo_account_bulk_update`
在您的 Apollo 数据库中一次最多更新 1000 个现有账户(比联系人限制更高!)。每个账户必须包含一个 id 字段。需要主密钥。
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `accounts` | array | 是 | 要更新的账户数组(最多 1000 个)。每个账户必须包含 id 字段,以及可选的 name、website_url、phone、owner_id |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `updated_accounts` | json | 成功更新的账户数组 |
| `failed_accounts` | json | 更新失败的账户数组 |
| `metadata` | json | 批量更新的元数据,包括更新和失败账户的计数 |
### `apollo_opportunity_create`
在您的 Apollo 数据库中为一个账户创建一个新交易(需要主密钥)
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `name` | string | 是 | 机会/交易的名称 |
| `account_id` | string | 是 | 此机会所属账户的 ID |
| `amount` | number | 否 | 机会的货币价值 |
| `stage_id` | string | 否 | 交易阶段的 ID |
| `owner_id` | string | 否 | 机会所有者的用户 ID |
| `close_date` | string | 否 | 预期的关闭日期ISO 8601 格式) |
| `description` | string | 否 | 关于机会的描述或备注 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `opportunity` | json | 来自 Apollo 的已创建机会数据 |
| `metadata` | json | 创建元数据,包括创建状态 |
### `apollo_opportunity_search`
搜索并列出您团队中的所有交易/机会
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `q_keywords` | string | 否 | 在机会名称中搜索的关键字 |
| `account_ids` | array | 否 | 按特定账户 ID 过滤 |
| `stage_ids` | array | 否 | 按交易阶段 ID 过滤 |
| `owner_ids` | array | 否 | 按机会所有者 ID 过滤 |
| `page` | number | 否 | 分页的页码 |
| `per_page` | number | 否 | 每页结果数 \(最大值: 100\) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `opportunities` | json | 符合搜索条件的机会数组 |
| `metadata` | json | 分页信息,包括页码、每页条目数和总条目数 |
### `apollo_opportunity_get`
通过 ID 检索特定交易/机会的完整详细信息
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `opportunity_id` | string | 是 | 要检索的机会 ID |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `opportunity` | json | Apollo 提供的完整机会数据 |
| `metadata` | json | 检索元数据,包括找到的状态 |
### `apollo_opportunity_update`
更新 Apollo 数据库中现有的交易/机会
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥 |
| `opportunity_id` | string | 是 | 要更新的机会 ID |
| `name` | string | 否 | 机会/交易的名称 |
| `amount` | number | 否 | 机会的货币价值 |
| `stage_id` | string | 否 | 交易阶段的 ID |
| `owner_id` | string | 否 | 机会所有者的用户 ID |
| `close_date` | string | 否 | 预期的结束日期ISO 8601 格式) |
| `description` | string | 否 | 关于机会的描述或备注 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `opportunity` | json | 来自 Apollo 的更新机会数据 |
| `metadata` | json | 更新的元数据,包括更新状态 |
### `apollo_sequence_search`
在您的团队中搜索序列/活动
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `q_name` | string | 否 | 按名称搜索序列 |
| `active` | boolean | 否 | 按活动状态筛选true 表示活动序列false 表示非活动序列) |
| `page` | number | 否 | 分页的页码 |
| `per_page` | number | 否 | 每页结果数最大值100 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `sequences` | json | 符合搜索条件的序列/活动数组 |
| `metadata` | json | 分页信息,包括页面、每页条目数和总条目数 |
### `apollo_sequence_add_contacts`
将联系人添加到 Apollo 序列
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `sequence_id` | string | 是 | 要添加联系人的序列 ID |
| `contact_ids` | array | 是 | 要添加到序列的联系人 ID 数组 |
| `emailer_campaign_id` | string | 否 | 可选的电子邮件活动 ID |
| `send_email_from_user_id` | string | 否 | 发送电子邮件的用户 ID |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `contacts_added` | json | 添加到序列的联系人 ID 数组 |
| `metadata` | json | 序列元数据,包括 sequence_id 和 total_added 计数 |
### `apollo_task_create`
在 Apollo 中创建新任务
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `note` | string | 是 | 任务备注/描述 |
| `contact_id` | string | 否 | 要关联的联系人 ID |
| `account_id` | string | 否 | 要关联的账户 ID |
| `due_at` | string | 否 | ISO 格式的截止日期 |
| `priority` | string | 否 | 任务优先级 |
| `type` | string | 否 | 任务类型 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `task` | json | 从 Apollo 创建的任务数据 |
| `metadata` | json | 包括创建状态的元数据 |
### `apollo_task_search`
在 Apollo 中搜索任务
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
| `contact_id` | string | 否 | 按联系人 ID 过滤 |
| `account_id` | string | 否 | 按账户 ID 过滤 |
| `completed` | boolean | 否 | 按完成状态过滤 |
| `page` | number | 否 | 分页的页码 |
| `per_page` | number | 否 | 每页结果数最大值100 |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `tasks` | json | 符合搜索条件的任务数组 |
| `metadata` | json | 分页信息,包括页码、每页数量和总条目数 |
### `apollo_email_accounts`
获取团队列表
#### 输入
| 参数 | 类型 | 必需 | 描述 |
| --------- | ---- | -------- | ----------- |
| `apiKey` | string | 是 | Apollo API 密钥(需要主密钥) |
#### 输出
| 参数 | 类型 | 描述 |
| --------- | ---- | ----------- |
| `email_accounts` | json | 在 Apollo 中链接的团队电子邮件账户数组 |
| `metadata` | json | 元数据,包括电子邮件账户的总数 |
## 注意事项
- 类别:`tools`
- 类型:`apollo`

View File

@@ -45028,3 +45028,169 @@ checksums:
content/38: 6140e8df144c799f9ad293cab91f87b5
content/39: ebbaea1438438f691d0f84ad89bcfc18
content/40: ac72cc2c55acf316557607a817dce4db
fd4428447037efb6f1fdcdb1cb0c0019:
meta/title: d322235b2ee086191aa5bc73646c7ebd
meta/description: eca9d4e0907d689f1dec8397acdff5f2
content/0: 1b031fb0c62c46b177aeed5c3d3f8f80
content/1: 6335dab76a38445c8367a069fc035a9a
content/2: 0385e919444c586c63091d3ee20bce90
content/3: aceaaf0857904513c19857cdf7f309d6
content/4: 9091fba2c80a89bf3a36ce581831e9ad
content/5: da00278f849ef04f7a6ed713b6eba2f8
content/6: 4d860e38ee1c2551fa66f9b088226f38
content/7: b778e4673a3415dcf105121f25deb1ea
content/8: 821e6394b0a953e2b0842b04ae8f3105
content/9: 4e56a0009fc320a6b2cdee2c8a42afe7
content/10: 9c8aa3f09c9b2bd50ea4cdff3598ea4e
content/11: de33e442f1f340252c811bd7c42b61b0
content/12: 334d84e6dd04c3d542912dfdfb263c05
content/13: 371d0e46b4bd2c23f559b8bc112f6955
content/14: 207ec07169d9e5d8372e1ff765aff4d3
content/15: bcadfc362b69078beee0088e5936c98b
content/16: 4901d7a460798dd849ebc6b74494264d
content/17: 5e4935360e00b6ea57291fafe15e104d
content/18: e9beb5edc9139c53754e929a6bf470a6
content/19: 371d0e46b4bd2c23f559b8bc112f6955
content/20: fc8d4286283ee9b8d374dd0b85102fdd
content/21: bcadfc362b69078beee0088e5936c98b
content/22: 6e5f8e14c30b075d46bce342c5fc7865
content/23: b8a0120d7eecedf101e1338f181feb6e
content/24: 07a1b9ee6eaef529ec9d2c30b27b5440
content/25: 371d0e46b4bd2c23f559b8bc112f6955
content/26: 50e419e7a03c621bf92d745665a4bf6a
content/27: bcadfc362b69078beee0088e5936c98b
content/28: e95c41ae76f88ac54e3fbbcebb0a88d4
content/29: 13747b857ab43cf125259d9d58da0121
content/30: 334d84e6dd04c3d542912dfdfb263c05
content/31: 371d0e46b4bd2c23f559b8bc112f6955
content/32: 9fadddb9651b5b80a01400e3fc4274db
content/33: bcadfc362b69078beee0088e5936c98b
content/34: d3df313379f8b7495f6fc81da7cb4b99
content/35: 1d3f987dc94f4fb0634910a88ab959f0
content/36: 36722410714fa3ca192ca462b48df61e
content/37: 371d0e46b4bd2c23f559b8bc112f6955
content/38: f7ec5c6fa6fe9775ab8ad27807e55a8a
content/39: bcadfc362b69078beee0088e5936c98b
content/40: b6ab50ed4e824c5d4fbbfca1d337ef1a
content/41: 15fe7951afdbbb5f6727e42e6d6e8dd1
content/42: a6d225acd601dd15cb0f5c3aa0967a34
content/43: 371d0e46b4bd2c23f559b8bc112f6955
content/44: 1ecaa277fb2a86eb3951e35950b26a2d
content/45: bcadfc362b69078beee0088e5936c98b
content/46: 698c88b8d2835f3dc0b410882b6726e6
content/47: 024ae5260640857007249003da2ecc34
content/48: 53f5ac34170fc92cbddce8e82aeec295
content/49: 371d0e46b4bd2c23f559b8bc112f6955
content/50: 5734d7d8da47574794f00a231963168d
content/51: bcadfc362b69078beee0088e5936c98b
content/52: 014668581a1f0e1300f174798e99155a
content/53: 0f266d84627c2b1afb4474bf3d29c0c2
content/54: a8d63ec1fe0f439f2b73fcdd24e8096d
content/55: 371d0e46b4bd2c23f559b8bc112f6955
content/56: d3487b6aea8c7aef255548912a1f884f
content/57: bcadfc362b69078beee0088e5936c98b
content/58: 5b013f07822152f3762efe3c3a05a525
content/59: df8fb91a0117aab1fd389fc0c45d5463
content/60: 5d37bda5eabaf494fc1b634c3ec10604
content/61: 371d0e46b4bd2c23f559b8bc112f6955
content/62: d7f063f2a50ce69a6838d5d1fed73d68
content/63: bcadfc362b69078beee0088e5936c98b
content/64: 5804cc57d55b0a2b69f663a6b6175664
content/65: b52e06780703fbc5562eeca991cda5ed
content/66: 49cdedbe6a85a50425e44edae9ab3807
content/67: 371d0e46b4bd2c23f559b8bc112f6955
content/68: 45a432ec65846ccc3d75177cf62b3327
content/69: bcadfc362b69078beee0088e5936c98b
content/70: 30c796112578f56385e527b0b510cccd
content/71: e9eeb0c45ae7667b2b7bef13d7410fea
content/72: 9cdadfeb63fc742922f59eab42508f7f
content/73: 371d0e46b4bd2c23f559b8bc112f6955
content/74: 0a8cb6c46f1a9a12bc308bacd253c029
content/75: bcadfc362b69078beee0088e5936c98b
content/76: 4c6c12405327c20da91484b6e7333706
content/77: e2a10746d92f38b473df73badd7c70b8
content/78: fe523ab7f0c1c2881cad308fe1f83872
content/79: 371d0e46b4bd2c23f559b8bc112f6955
content/80: 7a0e820a1021874d84545371628c9203
content/81: bcadfc362b69078beee0088e5936c98b
content/82: d861918462b4f32885d3e803a65cd64d
content/83: 2aa69f1e049a29229417ba6d2e3b1445
content/84: d42080a386e0e4d06f0b898df1506148
content/85: 371d0e46b4bd2c23f559b8bc112f6955
content/86: 2becb1ef7a9a19a566b799dcd21c1094
content/87: bcadfc362b69078beee0088e5936c98b
content/88: e0337ea36fc756079a94cf02dc114ec1
content/89: 88e29a7727d33d6c643a38d7a82970d8
content/90: 5d37bda5eabaf494fc1b634c3ec10604
content/91: 371d0e46b4bd2c23f559b8bc112f6955
content/92: c9c84b54a4a04fae6663adc5b2829bfd
content/93: bcadfc362b69078beee0088e5936c98b
content/94: 07b8f3c216f8ae79aa06d76be5eee802
content/95: c38cd9052e578c2d7ccbd15b1830a010
content/96: fe36912a2b796f3c4e5a2e2691c1b3e2
content/97: 371d0e46b4bd2c23f559b8bc112f6955
content/98: fc62639a1dcb33c6ef193f30b4bf0b3a
content/99: bcadfc362b69078beee0088e5936c98b
content/100: e48d2fb4e91c9e8b4358e7ac4f5093db
content/101: d3608791907fbda6daf4a17875f8a346
content/102: e177a7922b42d5070180066c7792a14f
content/103: 371d0e46b4bd2c23f559b8bc112f6955
content/104: ef4b2c847b0e6a6a8850b67405307485
content/105: bcadfc362b69078beee0088e5936c98b
content/106: 0a1e1ca063dbd230eb650d7a48641527
content/107: efec5de90c6a5a9a3581c58b29f69bb3
content/108: c32368f2b4588ccadf506e1c9ed39d75
content/109: 371d0e46b4bd2c23f559b8bc112f6955
content/110: 8cabab943e91cdd79d9bfae711f994f9
content/111: bcadfc362b69078beee0088e5936c98b
content/112: 9937f636bf6fe375c6dd6f9487dfc29b
content/113: eaac5385f11112d94f64d82c01d8aa2e
content/114: 0b0729e62563093467511ead5748d915
content/115: 371d0e46b4bd2c23f559b8bc112f6955
content/116: 76ba25e29652de483508549f8b90ab48
content/117: bcadfc362b69078beee0088e5936c98b
content/118: b4f907e7eed3be38e121c002deafe05b
content/119: 864754086908946a6c0d6bd85ad45f28
content/120: 5f33febd2cc081df4a95cd69fb78d4c9
content/121: 371d0e46b4bd2c23f559b8bc112f6955
content/122: 428a41b3a47626eb3839a17ea62d1249
content/123: bcadfc362b69078beee0088e5936c98b
content/124: 4b395627e7c1e29f76e12c33dff42807
content/125: dd774884430bc5bc1ea292e12966a2f6
content/126: df64e6a7a29140da7ef6ebc001d3b1fa
content/127: 371d0e46b4bd2c23f559b8bc112f6955
content/128: c2e58111c9310934719943f7f874e7a2
content/129: bcadfc362b69078beee0088e5936c98b
content/130: eb99048c37273bd44e33f946a1a990f9
content/131: 3398f33c56b20395e10f74d7912bd359
content/132: a257be3bbd676f5b92271bb09b6b4005
content/133: 371d0e46b4bd2c23f559b8bc112f6955
content/134: 0967329ecb6aaffbcf4808689d6c7692
content/135: bcadfc362b69078beee0088e5936c98b
content/136: 3b9ffef9f524a83ab0e6b92fa7ef5036
content/137: 9396f5c2552c1a6029d49ca65fdf3cbc
content/138: f308e8c0e6411b58416fd819faed8b17
content/139: 371d0e46b4bd2c23f559b8bc112f6955
content/140: d7376059810ebcff0f5a197096ed3e89
content/141: bcadfc362b69078beee0088e5936c98b
content/142: acba021f8dfa66acf74aef7dfa06b384
content/143: a28a71db4d9d9e3ac1306331c1498458
content/144: 290089fc05ce94f36485132a262c931e
content/145: 371d0e46b4bd2c23f559b8bc112f6955
content/146: 7607f6ceabb96a1e76be0486e81605a7
content/147: bcadfc362b69078beee0088e5936c98b
content/148: 011e17b44011848f2681d7c92d2a4193
content/149: 62d24bdd0997e5ac5fa2e948dab82b0f
content/150: 2cff4b4ece8a12f73f36dc5292625342
content/151: 371d0e46b4bd2c23f559b8bc112f6955
content/152: a770b4c0251752f171e20fbfaaca6c04
content/153: bcadfc362b69078beee0088e5936c98b
content/154: 0831b561d4286c23d0994689c97a4a04
content/155: f58c506bdc8e1c2484433ee0fcc52e2f
content/156: 2b986bfb8651602493e0e1f52b1af961
content/157: 371d0e46b4bd2c23f559b8bc112f6955
content/158: 1b1ed0ef0ad24a173d701afeaf41385b
content/159: bcadfc362b69078beee0088e5936c98b
content/160: fb835329fe9cde08d9ad9730b0305ab3
content/161: b3f310d5ef115bea5a8b75bf25d7ea9a
content/162: 0dc746c73de459c0e96845487cc48997