Anyreach API SDK
The Anyreach API SDK for Python provides access to the Anyreach API REST APIs from Python applications.
REST API for the Anyreach platform.
Every endpoint is scoped to one organization. Authenticate with a bearer token and, if your token can reach more than one organization, name the one you mean with the X-Anyreach-Org header. See Authentication.
This reference is generated from the running service, so the request and response shapes here are the ones the API actually enforces.
Installation
Install the Python SDK from PyPI, with whichever package manager your project uses:
pip install areach-apimatic-sdk
uv add areach-apimatic-sdk
poetry add areach-apimatic-sdk
Quick Start
Synchronous client
Construct AnyreachApiClient with keyword arguments, and call close() when you are done. Every argument is optional; the full list is in the SDK map.
from anyreach_api import AnyreachApiClient
client = AnyreachApiClient(bearer_auth="YOUR_BEARER_TOKEN")
# TODO: call endpoints here -- see api-reference.md
client.close()
Alternatively, scope it -- with AnyreachApiClient(...) as client: closes the pool on exit; see Best Practices.
Client is exported as an alias of AnyreachApiClient, so from anyreach_api import Client also works.
The SDK accepts every model-typed input in two interchangeable spellings, both type-checked: the typed model, or a plain dict with the same keys -- the OrDict and Model | ModelDict unions in the SDK map. Pick whichever suits the call site: the dict form needs no import, while the model form adds a keyword-checked constructor and editor completion.
Asynchronous client
AsyncAnyreachApiClient mirrors AnyreachApiClient with identical method names, and every endpoint method is a coroutine. It takes the same arguments, with some differences -- for example, the transport argument is custom_async_http_client.
from asyncio import run
from anyreach_api import AsyncAnyreachApiClient
async def main() -> None:
client = AsyncAnyreachApiClient(bearer_auth="YOUR_BEARER_TOKEN")
# TODO: call endpoints here, awaiting each -- see api-reference.md
await client.aclose()
run(main())
Alternatively, scope it -- async with AsyncAnyreachApiClient(...) as client: closes the pool on exit. Only the async spelling is aclose, matching httpx; see Best Practices.
AsyncClient is the exported alias. Each client accepts only its own transport argument; passing the other's is a TypeError at runtime and an error under mypy.
Usage
Two generated references cover the SDK; each answers a different question:
| Reference | For |
|---|---|
| API Reference | Usage guidance for a single parsed operation: client.<group>.<operation>(...) returns the typed payload and raises ApiError on any non-2xx, with .error the typed error body, or RawError for a status the operation does not document. |
| Raw API Reference | The same for the raw variant: client.<group>.with_raw_response.<operation>(...) returns ApiResult[T, E] and never raises for an API error. |
Both API references carry every one of the 185 operations, with a sync and an async sample and a parameter table each.
SDK map
This SDK ships a generated SDK map -- sdk-map.md -- a deterministic, lookup-oriented table of contents of the SDK's Python surface, generated by APIMatic alongside this SDK.
Consult the map before scanning or grepping the source: it answers call-level contract questions by lookup, and for anything it does not carry -- model shapes, enum values, an endpoint's route or behavioural prose -- it names the one source file to read. How to read the map itself, including the SDK-wide defaults its rows rely on, is stated at the top of sdk-map.md.
Best Practices
Match the disposal to the client's lifetime: an application-lifetime client is closed once at shutdown with close() / aclose(); where the lifetime fits a block, with AnyreachApiClient() as client: / async with AsyncAnyreachApiClient() as client: releases it automatically. Both are idempotent, but a closed client is not reusable: the next call raises. The client closes whatever transport it holds, including one you supplied via custom_http_client / custom_async_http_client; if you intend to reuse your own transport across clients, don't hand its lifetime to a with block.
License
This SDK is distributed under the MIT License.
Support
Refer to the API reference for detailed information on available operations with code samples.
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 areach_apimatic_sdk-0.0.2.tar.gz.
File metadata
- Download URL: areach_apimatic_sdk-0.0.2.tar.gz
- Upload date:
- Size: 238.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/2.4.3 CPython/3.13.15 Linux/6.1.158.2-microsoft-standard
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea4bc6f09c8f88da5c07c788a03056a82b22fb61d3feb2ce10e2be22487197d9
|
|
| MD5 |
13c0ec5d61307e93c0f1cc041f47e319
|
|
| BLAKE2b-256 |
dbcf837bf181c934339cc666e15c01fe56fade67f78de2b1f88051bd4a3031d1
|
File details
Details for the file areach_apimatic_sdk-0.0.2-py3-none-any.whl.
File metadata
- Download URL: areach_apimatic_sdk-0.0.2-py3-none-any.whl
- Upload date:
- Size: 546.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/2.4.3 CPython/3.13.15 Linux/6.1.158.2-microsoft-standard
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1920a0f4e3e7121b5fcd5fc999743b0b977969e0febc87b22c1e08c40b3e2e30
|
|
| MD5 |
b3fabcf4884795cbb488e9fed9704c89
|
|
| BLAKE2b-256 |
8e64c505d34ee81aa4efa164967f052b2e49d6953886abf976f7d8df2638de3d
|