Web automation, API access, and content access all through a standard entry point.
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.
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.
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
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
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'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
pip install tollbit-python-sdkfrom 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 pages.pages:
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
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
You can use either the use_client or the crawl_client to check rates.
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.
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
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.
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.
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
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
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
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
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.
We have disabled issues for the time being. Please reach out directly to TollBit.
We are not currently accepting contributions at this time. Thank you for your interest.
For internal development teams only
-
poetry
pipx install poetry
make installRun standard tests
make testsRun on all pythons
make matrix-testsExample code is available in examples
