b24api 2.x
b24api is a thin asynchronous Bitrix24 REST client for Python 3.12+. It knows how to send
requests, split logical batches, traverse lists, retry safely, preserve caller correlation and
close resources. It does not contain a Tasks, CRM or IM method catalog and does not impose
application storage rules.
Install and configure
uv sync --frozen
export BITRIX24_API_WEBHOOK_URL='https://portal.example/rest/.../'
Keep the webhook out of source, logs and command arguments. Reuse one client for a related unit of work so its HTTP/2 connection pool and rate state are reused.
from b24api import Bitrix24, Request
async with Bitrix24() as client:
profile = await client.call(Request("profile"))
The client owns its default transport. An injected transport remains caller-owned. aclose() is
idempotent and closes active streams before the owned transport.
Direct calls
Use call() for detached decoded JSON and call_response() when you also need the immutable
response envelope: result, total, next, timing and bounded diagnostic evidence.
from b24api import ReplaySafety
request = Request("example.item.get", {"id": 7}, ReplaySafety.SAFE)
decoded = await client.call(request)
response = await client.call_response(request)
Replay safety
Request.replay_safety describes what the client may do when a connection fails after the request
may already have reached Bitrix:
| Value | Meaning | After possible dispatch |
|---|---|---|
SAFE |
Repeating the request cannot create a second business effect. Typical reads and explicitly idempotent operations belong here. | Automatic retry is allowed within policy budgets. |
UNSAFE |
Repeating the request is known to risk a duplicate effect, for example creating an entity without an idempotency key. | No automatic replay; the caller receives an ambiguous-execution error and reconciles state. |
UNKNOWN |
The caller has not established whether replay is safe. This is the default. | Same conservative behavior as UNSAFE, while diagnostics preserve that safety was unknown rather than known unsafe. |
A failure proved to occur before dispatch may still be retried. Method names never imply safety;
mark a request SAFE only when the operation's semantics justify it.
Use ExecutionPolicy to narrow attempts or resource budgets for one operation:
from b24api import ExecutionPolicy
one_attempt = ExecutionPolicy(max_attempts_per_request=1)
result = await client.call(request, policy=one_attempt)
Logical batch and correlation
batch() accepts an arbitrary-length synchronous or asynchronous command source. It consumes the
source incrementally and splits it into physical Bitrix batches of at most 50 commands; the full
input is never materialized.
Command.correlation is arbitrary caller-owned state. It is retained by reference, returned with
the outcome, never serialized to Bitrix and never included in safe diagnostics. This is useful for
matching a result to the object, file, chat or database row that produced its request.
from b24api import Command, CommandSuccess
commands = (
Command(
Request("example.item.get", {"id": item_id}, ReplaySafety.SAFE),
correlation=item_id,
)
for item_id in source_ids
)
async with client.batch(commands, batch_size=25) as stream:
async for outcome in stream:
assert isinstance(outcome, CommandSuccess)
consume(outcome.correlation, outcome.result)
batch() is fail-fast. batch_outcomes() continues where safe and yields one of
CommandSuccess, CommandFailure, CommandNotExecuted or CommandOutcomeUnknown in input order.
from b24api import CommandFailure, CommandNotExecuted, CommandOutcomeUnknown
async with client.batch_outcomes(commands) as stream:
async for outcome in stream:
match outcome:
case CommandSuccess() as success:
consume(success.correlation, success.result)
case CommandFailure() | CommandNotExecuted() | CommandOutcomeUnknown():
handle(outcome)
For independently dispatchable commands, use fan_out() or fan_out_outcomes() with
DirectDispatch or BatchDispatch. Delivery order is explicitly READY or INPUT.
Choosing a list operation
The unsuffixed operation is the basic strategy with the fewest endpoint assumptions. Faster or more specialized mechanics have explicit names and explicit preconditions.
| Operation | Use it when | Network mechanics | Completion proof |
|---|---|---|---|
iter_list |
The method supports ordinary offset pagination. | Pages are requested sequentially using server next; no separate count request is made. |
Continuation and empty terminal page; add identity for duplicate detection. |
iter_list_counted |
The first response provides an exact filtered total and stable offset pages. |
Head page is direct; all known tail offsets are grouped into physical Bitrix batches. | Exact total, ranges and identities. |
iter_list_keyset |
The method may omit total, but reliably supports ordering and filtering by a unique identity. |
Sequential pages advance an identity boundary; no count request. | Strict monotonic identity and empty terminal page. |
iter_list_cursor |
Each next request depends on a cursor from the previous response. | Sequential dependent cursor requests. | Strict unique monotonic cursor and empty terminal page. |
iter_references |
The same list method must run for many parent parameter sets, such as comments per owner or messages per chat. | Bindings are scheduled with direct or physical-batch dispatch; each binding has its own traversal state. | Per-binding rows, completion/failure and caller correlation. |
page_size is a local decoded-page cap. It is sent to Bitrix only when you provide the endpoint's
exact limit_path; the client never guesses method-specific parameter names.
Sequential offset
This is the canonical default. It follows the next returned by the server and confirms the end
with an empty page. A total present in the response is observational; this strategy does not add
a separate count request.
from b24api import IdentityCoercion, IdentitySpec, ResultSelector
identity = IdentitySpec(
item_path=("ID",),
filter_key="ID",
order_key="ID",
coercion=IdentityCoercion.DECIMAL_STRING_INTEGER,
)
stream = client.iter_list(
Request("example.item.list", replay_safety=ReplaySafety.SAFE),
selector=ResultSelector(("items",)),
identity=identity,
)
async with stream:
async for item in stream:
consume(item)
Without identity, successful exhaustion is reported as MECHANICS_ONLY: pagination completed,
but the client cannot prove that the portal did not duplicate or substitute rows.
Counted, physically batched tail
The first direct page must contain an exact filtered total and, when more rows exist, next.
The client derives all remaining offsets from the observed head width and sends tail pages through
bounded physical batches.
stream = client.iter_list_counted(
Request("example.item.list", replay_safety=ReplaySafety.SAFE),
selector=ResultSelector(("items",)),
identity=identity,
page_size=50,
batch_size=50,
)
Use it only when total is exact for the supplied filter and offset pages are stable. Any missing
range, overlap, duplicate identity or total contradiction raises IncompleteTraversalError.
No-count keyset
Keyset traversal does not ask the server for a count. The method must honor ordering and a strict
identity boundary such as filter[>ID]. It is intentionally sequential because a future boundary
cannot be known safely before the preceding page arrives.
from b24api import KeysetSpec, ParameterPath
stream = client.iter_list_keyset(
Request("example.item.list", replay_safety=ReplaySafety.SAFE),
selector=ResultSelector(("items",)),
identity=identity,
keyset=KeysetSpec(
filter_path=ParameterPath(("filter",)),
order_path=ParameterPath(("order",)),
),
)
Dependent cursor
Use a cursor when the next boundary is returned or derived from the previous page, as with many message-list methods.
from b24api import CursorSpec, ParameterPath
stream = client.iter_list_cursor(
Request("example.message.list", replay_safety=ReplaySafety.SAFE),
selector=ResultSelector(("items",)),
cursor=CursorSpec(
parameter_path=ParameterPath(("LAST_ID",)),
item_path=("ID",),
coercion=IdentityCoercion.DECIMAL_STRING_INTEGER,
direction="ascending",
take="last",
),
)
Cursor values must be unique and strictly monotonic. If an endpoint exposes only a non-unique boundary, use an application-owned direct-call workflow or supply a unique tie-breaker.
One list method across many parent entities
Binding applies exact parameter updates to a base request and carries parent correlation. The
client remains unaware of entity types: a binding can represent a deal, lead, chat or any other
caller-defined parent.
from b24api import (
BatchDispatch,
Binding,
ParameterPath,
ParameterUpdate,
ReferenceComplete,
ReferenceItem,
SequentialTraversal,
)
bindings = (
Binding(
summary=f"owner {parent_id}",
updates=(ParameterUpdate(ParameterPath(("filter", "OWNER_ID")), parent_id),),
correlation=parent_id,
)
for parent_id in parent_ids
)
stream = client.iter_references(
Request("example.comment.list", replay_safety=ReplaySafety.SAFE),
bindings,
traversal=SequentialTraversal(selector=ResultSelector(("items",)), identity=identity),
dispatch=BatchDispatch(batch_size=25, concurrency=2),
)
async with stream:
async for event in stream:
if isinstance(event, ReferenceItem):
consume(event.correlation, event.item)
elif isinstance(event, ReferenceComplete):
record_completion(event.correlation, event.row_count)
For messages across chats, use the same iter_references() shape: each binding updates the chat
parameter and carries the chat correlation; choose CursorTraversal when the message endpoint is
cursor-based. Identity tracking and completion remain scoped to each binding, so equal child IDs
under different parents are not conflated.
from b24api import (
Binding,
CursorSpec,
CursorTraversal,
DirectDispatch,
IdentityCoercion,
ParameterPath,
ParameterUpdate,
ResultSelector,
)
chat_bindings = (
Binding(
summary=f"chat {chat_id}",
updates=(ParameterUpdate(ParameterPath(("DIALOG_ID",)), chat_id),),
correlation={"chat_id": chat_id},
)
for chat_id in chat_ids
)
messages = client.iter_references(
Request("example.message.list", replay_safety=ReplaySafety.SAFE),
chat_bindings,
traversal=CursorTraversal(
selector=ResultSelector(("items",)),
cursor=CursorSpec(
parameter_path=ParameterPath(("LAST_ID",)),
item_path=("ID",),
coercion=IdentityCoercion.DECIMAL_STRING_INTEGER,
direction="ascending",
take="last",
),
),
dispatch=DirectDispatch(concurrency=4),
)
iter_reference_outcomes() additionally yields correlated ReferenceFailure,
ReferenceNotExecuted and ReferenceOutcomeUnknown. A malformed source object that is not a
Binding has no valid caller correlation, so it terminates the source with InputSourceError
rather than fabricating a reference outcome. Already accepted bindings retain their real outcomes.
Streams, partial results and reports
Every multi-item operation returns an OperationStream. Prefer async with: a plain break does
not close an arbitrary async iterator. After cleanup, stream.report permanently exposes one
immutable OperationReport; before termination it is None.
first = await client.iter_list(request).first()
page = await client.iter_list(request).collect(limit=100)
assert first.report.partial
assert page.report.partial
Helpers do not pull an extra row just to prove exhaustion. Reaching a requested limit is therefore
EARLY_CLOSED, never a false COMPLETED. Cancellation and cleanup preserve the primary exception
and publish the same final report where the Python exception type permits it.
Resource boundaries
ExecutionPolicy bounds requests, pages, elapsed time, attempts, decompressed response bytes,
buffered commands and rows, direct concurrency and active references. The default response ceiling
is 16 MiB and is enforced while streaming, before JSON decoding.
Sequential and counted exact traversal retain observed identities in memory. There is no database,
spill file or identity-count refusal. Crossing 100,000 distinct identities emits one
RuntimeWarning; exact tracking continues. Strict keyset and cursor traversal retain only
monotonic progression state when sufficient.
CLI
The wheel installs b24api. Stdout contains only result data; list rows are JSONL. Reports and safe
errors go to stderr. Credentials come only from Settings and cannot be passed as CLI arguments.
b24api call profile
b24api call example.item.get --params '{"id":7}' --raw --replay-safety safe
b24api list example.item.list --params @params.json
b24api list example.item.list --strategy counted --contract @counted-contract.json
The --raw CLI option selects the response envelope; it does not alter the Python API. Advanced
list strategies use closed JSON version: 1 contracts. The entire contract is validated before
client construction. Run b24api --help and b24api list --help for the compact option surface.
Exit codes are 0 success, 2 usage/contract error, 3 unavailable configuration, 4
remote/protocol/correctness/incomplete failure, 5 broken output consumer and 130 cancellation.
Correctness boundaries
The client fails closed on contradictory pagination, missing counted ranges, duplicate identities, unsafe ambiguous replay, oversized responses and incomplete cleanup. It can prove only facts visible through the transport contract: continuation, totals, identity, order, budgets and lifecycle.
It cannot generically prove that Bitrix honored the business meaning of a filter, choose an application's composite storage key or reconcile an ambiguous write. Applications must validate expected business sets and verify writes where needed.
Performance and profiling
The current deterministic profile covers request counts, wall/CPU time, time to first row, high-water counters, retained resources and optional Memray allocations:
uv run python tools/b24api_evidence/profile_runtime.py --capability-suite
uv run python tools/b24api_evidence/profile_runtime.py --samples 7 --warmups 2
uv run --with memray python tools/b24api_evidence/profile_runtime.py \
--case dense-10k --plan counted_batch --samples 7 --warmups 2 \
--memray-output /tmp/b24api.bin
uv run --with memray memray stats /tmp/b24api.bin
These deterministic fixtures characterize local resources and network shape; they are not live portal latency admission. See docs/performance.md for current measurements and docs/architecture.md for guarantees and ownership boundaries.
Projects moving from an earlier API surface can use docs/migration.md.
Verification
uv sync --frozen
.venv/bin/pytest -q -p no:cacheprovider
.venv/bin/ruff check . --no-fix --no-cache
.venv/bin/ruff format --check . --no-cache
.venv/bin/mypy --strict b24api tools/b24api_evidence
git diff --check
The wheel regression installs into an isolated environment, executes the b24api entry point and
checks that tests, live/evidence tooling and credentials are excluded.
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 b24api-2.0.0.tar.gz.
File metadata
- Download URL: b24api-2.0.0.tar.gz
- Upload date:
- Size: 103.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37faecdb5b5e9863ebe56564b5c4c6d60d9b2ea5d9bd2d1194f25cb10fb8a9c6
|
|
| MD5 |
8099995b754b9ee7585aaf719ac992a3
|
|
| BLAKE2b-256 |
135fb3f9e345d2357cf275482506f3ce5cdd9fd77311dc294f91d57e82eceaa2
|
Provenance
The following attestation bundles were made for b24api-2.0.0.tar.gz:
Publisher:
publish-to-pypi.yml on shkarupa-alex/b24api
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
b24api-2.0.0.tar.gz -
Subject digest:
37faecdb5b5e9863ebe56564b5c4c6d60d9b2ea5d9bd2d1194f25cb10fb8a9c6 - Sigstore transparency entry: 2583391521
- Sigstore integration time:
-
Permalink:
shkarupa-alex/b24api@6a732db9245c854e4f37bb0d3782d477f78a40c4 -
Branch / Tag:
refs/tags/2.0.0 - Owner: https://github.com/shkarupa-alex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@6a732db9245c854e4f37bb0d3782d477f78a40c4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file b24api-2.0.0-py3-none-any.whl.
File metadata
- Download URL: b24api-2.0.0-py3-none-any.whl
- Upload date:
- Size: 128.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3743113860c7be12dc59a4f1c74ff1b58ae7b6de6ea5e64dfb277c72f6b1f6de
|
|
| MD5 |
6a0aa0cdedd4904f4716ab5283c613e0
|
|
| BLAKE2b-256 |
40c506eab353bbb35cbf7f70058c75519a6fecae5881c841baf8db4817fedecb
|
Provenance
The following attestation bundles were made for b24api-2.0.0-py3-none-any.whl:
Publisher:
publish-to-pypi.yml on shkarupa-alex/b24api
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
b24api-2.0.0-py3-none-any.whl -
Subject digest:
3743113860c7be12dc59a4f1c74ff1b58ae7b6de6ea5e64dfb277c72f6b1f6de - Sigstore transparency entry: 2583391526
- Sigstore integration time:
-
Permalink:
shkarupa-alex/b24api@6a732db9245c854e4f37bb0d3782d477f78a40c4 -
Branch / Tag:
refs/tags/2.0.0 - Owner: https://github.com/shkarupa-alex
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@6a732db9245c854e4f37bb0d3782d477f78a40c4 -
Trigger Event:
push
-
Statement type: