Getting Started with apollo-rest-api
Introduction
The Apollo API provides programmatic access to Apollo, the all-in-one sales intelligence and engagement platform. Use it to enrich people and company data (individually or in bulk), search Apollo's database of over 240 million contacts and 30 million companies, and manage accounts, contacts, deals, sequences, tasks, calls, and conversations in your go-to-market workflows.
Base URL
All API requests are made to https://api.apollo.io/api/v1.
Authentication
- Apollo users authenticate with an API key passed in the
x-api-keyrequest header. See Create API Keys. - Apollo partners building integrations on behalf of mutual users authenticate with the OAuth 2.0 authorization flow.
Rate limits & credits
Rate limits and credit consumption depend on your Apollo pricing plan. Check your current limits and usage with the View API Usage Stats and Rate Limits endpoint. For more details, see Rate Limits and the API FAQs.
New to the API? Start with the Apollo API overview.
Install the Package
The package is compatible with Python versions 3.7+.
Install the package from PyPi using the following pip command:
pip install apimatic-apollo-sdk==0.0.1
You can also view the package at: https://pypi.python.org/pypi/apimatic-apollo-sdk/0.0.1
Initialize the API Client
Note: Documentation for the client can be found here.
The following parameters are configurable for the API Client:
| Parameter | Type | Description |
|---|---|---|
| http_client_instance | Union[Session, HttpClientProvider] |
The Http Client passed from the sdk user for making requests |
| override_http_client_configuration | bool |
The value which determines to override properties of the passed Http Client from the sdk user |
| http_call_back | HttpCallBack |
The callback value that is invoked before and after an HTTP call is made to an endpoint |
| timeout | float |
The value to use for connection timeout. Default: 30 |
| max_retries | int |
The number of times to retry an endpoint call if it fails. Default: 0 |
| backoff_factor | float |
A backoff factor to apply between attempts after the second try. Default: 2 |
| retry_statuses | Array of int |
The http statuses on which retry is to be done. Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524] |
| retry_methods | Array of string |
The http methods on which retry is to be done. Default: ["GET", "PUT"] |
| proxy_settings | ProxySettings |
Optional proxy configuration to route HTTP requests through a proxy server. |
| logging_configuration | LoggingConfiguration |
The SDK logging configuration for API calls |
| api_key_credentials | ApiKeyCredentials |
The credential object for Custom Header Signature |
| bearer_auth_credentials | BearerAuthCredentials |
The credential object for OAuth 2 Bearer token |
The API client can be initialized as follows:
Code-Based Client Initialization
import logging
from apollorestapi.apollorestapi_client import ApollorestapiClient
from apollorestapi.configuration import Environment
from apollorestapi.http.auth.api_key import ApiKeyCredentials
from apollorestapi.http.auth.bearer_auth import BearerAuthCredentials
from apollorestapi.logging.configuration.api_logging_configuration import LoggingConfiguration
from apollorestapi.logging.configuration.api_logging_configuration import RequestLoggingConfiguration
from apollorestapi.logging.configuration.api_logging_configuration import ResponseLoggingConfiguration
client = ApollorestapiClient(
api_key_credentials=ApiKeyCredentials(
x_api_key='x-api-key'
),
bearer_auth_credentials=BearerAuthCredentials(
access_token='AccessToken'
),
environment=Environment.PRODUCTION,
logging_configuration=LoggingConfiguration(
log_level=logging.INFO,
request_logging_config=RequestLoggingConfiguration(
log_body=True
),
response_logging_config=ResponseLoggingConfiguration(
log_headers=True
)
)
)
Environment-Based Client Initialization
from apollorestapi.apollorestapi_client import ApollorestapiClient
# Specify the path to your .env file if it’s located outside the project’s root directory.
client = ApollorestapiClient.from_environment(dotenv_path='/path/to/.env')
See the Environment-Based Client Initialization section for details.
Authorization
This API uses the following authentication schemes.
List of APIs
- Emailer Messages
- API
- Enrichment
- Search
- Accounts
- Contacts
- Deals
- Sequences
- Tasks
- Calls
- Conversations
- Analytics
- Miscellaneous
SDK Infrastructure
Configuration
- ProxySettings
- Environment-Based Client Initialization
- AbstractLogger
- LoggingConfiguration
- RequestLoggingConfiguration
- ResponseLoggingConfiguration
HTTP
Utilities
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apimatic_apollo_sdk-0.0.1.tar.gz.
File metadata
- Download URL: apimatic_apollo_sdk-0.0.1.tar.gz
- Upload date:
- Size: 359.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a45fbc6a35177d23c75b145da4ea865b9af43990a797adfc9b353686a8babece
|
|
| MD5 |
6f57bf989b87ecf64e0696a842690020
|
|
| BLAKE2b-256 |
f64289cb6b9dc83e68d9e0208a28d8b6783d83b06516a501f604a255b403417a
|
File details
Details for the file apimatic_apollo_sdk-0.0.1-py3-none-any.whl.
File metadata
- Download URL: apimatic_apollo_sdk-0.0.1-py3-none-any.whl
- Upload date:
- Size: 770.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d657cc9ac38d535b034ae232fca92184dcf261a442d3a472110a695e18ddaac1
|
|
| MD5 |
4ccd792a66d82a0f9e8db7049887533c
|
|
| BLAKE2b-256 |
b9c9e9b2f2fb5383a4d06876b8ca2f85139bdc47f8b6c767ea2bf92bb81038c7
|