Arbitr Python
Official Python client and arbitr CLI for the Arbitr External API.
Install
pip install arbitr-sdk
The PyPI package is arbitr-sdk. The import and CLI stay arbitr. Python 3.11 or newer.
Mint a key at https://arbitr.straker.ai/settings/api-keys
and store it as ARBITR_API_KEY in the environment or a .env file. Submit and
download need both verify:submit and verify:read. A test key (abr_test_...)
checks auth and request shape without running the pipeline or spending credits —
start there, then switch to a live key (abr_live_...). See
Test mode.
Library
from arbitr import ArbitrClient
client = ArbitrClient.from_env() # ARBITR_API_KEY, optional ARBITR_BASE_URL
project = client.projects.submit(
files=["report.docx"],
name="Q3 report",
target_language_codes=["ko-kr", "fr-fr"],
idempotency_key="run-2026-08-report",
)
final = client.projects.wait(project.id)
client.projects.download_zip(final.id, "out/deliverables.zip")
Async:
from arbitr import AsyncArbitrClient
async with AsyncArbitrClient.from_env() as client:
me = await client.me()
Default host is production: https://api-arbitr.straker.ai.
Language codes are lowercase BCP-47 tags (ko-kr, fr-fr). Bare codes (ko)
are rejected by the API — client.languages.resolve(["ko"]) expands them, or
arbitr submit --resolve-locales does it for you.
The client wraps the published OpenAPI surface only. Deprecated aliases
(agent-selection, /deliverables/zip, /resume) are not wrapped; use the
canonical replacements (wait() / the Arbitr UI, ?format=zip, /resumptions).
CLI
export ARBITR_API_KEY=abr_live_...
arbitr me
arbitr submit report.docx --locales ko-kr,fr-fr --wait --out out/
arbitr --help and arbitr COMMAND --help are the command reference.
Exit codes:
| Code | Meaning |
|---|---|
0 |
ok |
1 |
the API returned an error (JSON envelope on stderr) |
2 |
usage, config, network, or timeout failure |
3 |
the project is waiting on a person — agent_selection (start the campaign in the Arbitr UI) or awaiting_payment (top up, then arbitr resume) — and cannot proceed until they act |
Coding agents
Give your agent this prompt:
Set up arbitr for me. Fetch https://arbitr.apidocumentation.com/getting-started/agent-setup/index.md and follow it.
It installs the CLI, pauses while you create and store a key, verifies access
with arbitr me, and installs the persistent skill. It does not submit a project.
Or install the agent skill
directly (source: skills/arbitr/SKILL.md):
npx -y skills add strakergroup/arbitr-python --skill arbitr --yes --global
To call the API as hosted tools instead of through the CLI, see MCP.
Errors
Everything this package raises derives from ArbitrBaseError, so one except
is enough to be safe. Below it there are two branches:
| Branch | Raised when | Notable members |
|---|---|---|
ArbitrError |
the API returned a non-2xx response | AuthenticationError, PaymentRequiredError, NotFoundError, ConflictError, ValidationError, RateLimitError, GoneError, ServerError |
ArbitrClientError |
the call failed before or instead of an error envelope | TransportError (ConnectionFailedError, RequestTimeoutError), ClientInputError, ActionRequiredError, ProjectWaitTimeoutError, ResponseParseError |
httpx exceptions never escape the client — connection and timeout failures
arrive as ConnectionFailedError / RequestTimeoutError with the original
exception on __cause__.
from arbitr import ArbitrBaseError, PaymentRequiredError
try:
client.projects.resume(project_id)
except PaymentRequiredError as exc:
print(f"short by {exc.shortfall} credits")
except ArbitrBaseError as exc:
print(f"call failed: {exc}")
Retries and rate limits
Retries are opt-in and off by default on the library client:
client = ArbitrClient.from_env(max_retries=3)
The CLI retries GET up to 3 times (--max-retries / ARBITR_MAX_RETRIES).
Only GET is replayed — Retry-After is honoured on 429 and 5xx back off
exponentially (capped at 60s). POST /v1/projects is never retried
automatically because its multipart body streams file handles; pass
idempotency_key= and retry it yourself. After any call,
client.rate_limit holds the latest X-RateLimit-* values.
Contributing
Development setup, checks, and how to refresh the pinned OpenAPI spec are in CONTRIBUTING.md.
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 arbitr_sdk-0.2.1.tar.gz.
File metadata
- Download URL: arbitr_sdk-0.2.1.tar.gz
- Upload date:
- Size: 48.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9b5b99c037bf9038ee8c073e74219b4f950a900edaf8c1792a2be36205166bf
|
|
| MD5 |
9727fd169e2cc5fc5fbb497f7d312d25
|
|
| BLAKE2b-256 |
d4cf7a7f5d3f1a824980c0371dfb033d60e284ea5481b5a7b3680581aec52926
|
File details
Details for the file arbitr_sdk-0.2.1-py3-none-any.whl.
File metadata
- Download URL: arbitr_sdk-0.2.1-py3-none-any.whl
- Upload date:
- Size: 56.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7b6296c34c5ee941caec62838f0584fa149d55f08487351b5b98a2480c20110
|
|
| MD5 |
e7f54553206ac1703c6c371291d7fc31
|
|
| BLAKE2b-256 |
ae153ca70990110221033389edcc777a9bd356ed4154c3b59dcff3d728477516
|