Tollbit SDK for interacting tollbit services, including retrieving content and connecting to the API
Project description
Tollbit: Front Door Access for AI Agents
Web automation, API access, and content access all through a standard entry point.
Tollbit
A managed entry point to any web app, specifically meant for AI agents. Direct, authorized, and reliable agent <-> service interactions for any web service on the internet. Built for web automation, API access, and content access.
Why Tollbit Exists
It's no secret that AI agents are going to run the web in the near future. However, for that to become a reality, the way agents interact with the internet needs to change. Currently, agent builders' options are limited to typical developer APIs and/or web automation. While great for demos, these patterns seem like the initial "hack" waiting for a more long term solution.
Developer APIs work well, but there is a very short list beyond the overused Google Drive, Slack, etc. Web automation is extremely slow, unreliable and insecure. Not only that, but most websites don't want bots on them, leading to doing all the grunt work of solving captchas and avoiding getting blocked.
The main reason for all this trouble? The web was not built for agents to be first class citzens.
Tollbit aims to build critical infrastructure that opens up new pathways for agents to act on the web, at native speed, and to actually bring real value to their users.
We are building on one ethical principle: agents shouldn't (need to) pretend to be humans on the internet.
This approach solves problems for both sides: website owners gain a reliable way to identify legitimate AI agents, manage their access privileges, and monetize their usage, while AI developers get stable, authorized access to first-party APIs, content, or web UI.
How Tollbit Works
Tollbit creates a gateway for AI agents through a simple convention:
Any service with a tollbit subdomain (tollbit.example.com) explicitly welcomes agent access with standardized authorization, permissions, and monetization.
We call this subdomain the "front door" - a dedicated entry point built specifically for AI agents, separate from human traffic.
flowchart LR
%% Define the AI agent client
A[AI Agent with<br>Tollbit Client]
%% Define the Tollbit front doors
B1[tollbit.service-a.com]
B2[tollbit.service-b.com]
B3[tollbit.service-c.com]
%% Define the actual services
C1[service-a.com]
C2[service-b.com]
C3[service-c.com]
%% Define the human user (simple)
H[Human User]
%% Connect AI agent to Tollbit front doors
A -->|"HTTP"| B1
A -->|"HTTP"| B2
A -->|"HTTP"| B3
%% Connect human to just service-a
H -->|"Browser"| C1
%% Connect Tollbit front doors to actual services - no labels
B1 --- C1
B2 --- C2
B3 --- C3
For Service Providers
Tollbit lets you monetize AI agent access to your service without building custom infrastructure:
- Implement once, work with any agent
- Set different pricing tiers and usage limits
- Separate human and bot traffic transparently
- Prevent abuse through standardized authentication
For AI Developers
Tollbit gives your agents reliable access to services:
- One consistent pattern for authentication and access
- No more brittle web automation that breaks with UI changes
- Clear permissions model designed for non-human users
- Focus on building intelligence, not maintaining integration code
tollbit-python-sdk
Tollbit's python SDK for interacting with Tollbit's services. Pull this directly into your code to make requests; no need to write your own clients. The SDK supports both synchronous and asynchronous calls.
The SDK currently supports the following operations:
- Indexing content to assist with knowledge graphs
- Checking rates for paid content
- Access paid content using your organization's API key
Installing
pip install tollbit-python-sdk
Indexing Content
Synchronous
from tollbit import crawl_content
from tollbit import content_formats
client = crawl_content.create_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
pages = client.list_content_catalog(
url="https://pioneervalleygazette.com",
page_size=5,
)
for page in page:
print(f"URL: {page.page_url} Last Modified: {page.last_mod}")
data = client.crawl_content(url=page.page_url)
print(data.content.main)
For more examples please see examples/crawl_content.py
Asynchronous
from tollbit import crawl_content
from tollbit import content_formats
client = crawl_content.create_async_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
pages = await client.list_content_catalog(
url="https://pioneervalleygazette.com",
page_size=5,
)
For more examples please see examples/crawl_content_async.py
Checking Rates
You can use either the use_client or the crawl_client to check rates.
Synchronous
from tollbit import use_content
from tollbit import crawl_content
use = use_content.create_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
rate_info = use.get_rate(url="https://pioneervalleygazette.com/daydream")
crawl = crawl_content.create_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
rate_info = crawl.get_rate(url="https://pioneervalleygazette.com/daydream")
For more examples please see examples/get_rates.py.
Asynchronous
from tollbit import use_content
from tollbit import crawl_content
use = use_content.create_async_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
rate_info = await use.get_rate(url="https://pioneervalleygazette.com/daydream")
crawl = crawl_content.create_async_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
rate_info = await crawl.get_rate(url="https://pioneervalleygazette.com/daydream")
For more examples please see examples/get_rates_async.py
Accessing sanctioned content
Synchronous
from tollbit import use_content
from tollbit import licenses
from tollbit import currencies
client = use_content.create_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
data = client.get_sanctioned_content(
url="https://pioneervalleygazette.com/daydream",
max_price_micros=11000000,
currency=currencies.USD,
license_type=licenses.types.ON_DEMAND_LICENSE
)
print(data.content.main)
For more examples please see examples/get_content.py.
Asynchronous
from tollbit import use_content
from tollbit import licenses
from tollbit import currencies
client = use_content.create_async_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
data = await client.get_sanctioned_content(
url="https://pioneervalleygazette.com/daydream",
max_price_micros=11000000,
currency=currencies.USD,
license_type=licenses.types.ON_DEMAND_LICENSE
)
print(data.content.main)
For more examples please see examples/get_content_async.py.
Self reporting usage
Synchronous
from tollbit import self_reporting
from tollbit import licenses
from tollbit import use_content
reporting_client = self_reporting.create_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
# Create an array of your usages
usages = [self_reporting.usage(
url="https://pioneervalleygazette.com/daydream",
times_used=1,
license_permissions=[licenses.permissions.LICENSE_PERMISSION_PARTIAL_USE],
license_id="licenses-id-123",
license_type=licenses.types.ON_DEMAND_LICENSE,
)]
# Create an idempotent transaction block
transaction_block = reporting_client.create_transaction_block(usages)
# Report usages
result = reporting_client.report(transaction_block)
For more examples please see examples/self_reporting.py
Asynchronous
from tollbit import self_reporting
from tollbit import licenses
from tollbit import use_content
reporting_client = self_reporting.create_async_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
# Create an array of your usages
usages = [self_reporting.usage(
url="https://pioneervalleygazette.com/daydream",
times_used=1,
license_permissions=[licenses.permissions.LICENSE_PERMISSION_PARTIAL_USE],
license_id="licenses-id-123",
license_type=licenses.types.ON_DEMAND_LICENSE,
)]
# Create an idempotent transaction block
transaction_block = reporting_client.create_transaction_block(usages)
# Report usages
result = await reporting_client.report(transaction_block)
For more examples please see examples/self_reporting_async.py
Search
Synchronous
from tollbit import search
search_client = search.create_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
results = client.search(q="DIY home projects for millenials")
For more examples please see examples/search.py
Asynchronous
from tollbit import search
search_client = search.create_async_client(
secret_key="YOUR API KEY",
user_agent="YOUR USER AGENT"
)
results = await client.search(q="DIY home projects for millenials")
For more examples please see examples/search_async.py
Configuration
request_timeout
All create client function can take the optional parameters request_timeout (float; defaults to 5.0) which sets a timeout for all network requests. Please be aware that some operations
use multiple network calls, and the timeout is set for each individual network request not for the client function call overall.
Issues
We have disabled issues for the time being. Please reach out directly to tollbit
Contributions
We are not currently accepting contributions at this time. Thank you for your interest.
Local setup
For internal development teams only
Requirements
-
poetry
pipx install poetry
Setup
make install
Tests
Run standard tests
make tests
Run on all pythons
make matrix-tests
Examples
Example code is available in examples
Project details
Release history Release notifications | RSS feed
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 tollbit_python_sdk-0.5.3.tar.gz.
File metadata
- Download URL: tollbit_python_sdk-0.5.3.tar.gz
- Upload date:
- Size: 18.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.12.6 Darwin/25.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85332a5b84bd523be598c6c13e28a9af56ef3cfa5f0dcd7638211034375575f2
|
|
| MD5 |
12fd441ee728a027fa31b5b298939e4c
|
|
| BLAKE2b-256 |
df39cfef7d359f44173eb52597d85fe6474d7ba7b3cb060b43b1e6ba7a5e5c4e
|
File details
Details for the file tollbit_python_sdk-0.5.3-py3-none-any.whl.
File metadata
- Download URL: tollbit_python_sdk-0.5.3-py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.12.6 Darwin/25.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0d4b23aeefc4f30df0eb2fb890a305e6d5781d4b2f51cbea810f89ab052aaa0
|
|
| MD5 |
b86f343cf772dbac1c366e92b98e8aa5
|
|
| BLAKE2b-256 |
fe123a4ceb12ec2e394ed880dbb1ad981c9210a64a333dee4417b78e90d53bbd
|