Skip to main content

Tollbit SDK for interacting tollbit services, including retrieving content and connecting to the API

Project description

Tollbit

Tollbit: Front Door Access for AI Agents

Web automation, API access, and content access all through a standard entry point.


GitHub stars Documentation Twitter Follow

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 currently supports the following operations:

Installing

pip install tollbit-python-sdk

Indexing Content

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

Checking Rates

from tollbit import use_content

client = use_content.create_client(
    secret_key="YOUR API KEY", 
    user_agent="YOUR USER AGENT"
)
rate_info = client.get_rate(url="https://pioneervalleygazette.com/daydream")

For more examples please see examples/get_rates.py.

Accessing sanctioned content

from tollbit import use_content
from tollbit import licences
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=licences.types.ON_DEMAND_LICENSE
)

print(data.content.main)

For more examples please see examples/get_content.py.

Self reporting usage

from tollbit import self_reporting
from tollbit import licences
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=[licences.permissions.LICENSE_PERMISSION_PARTIAL_USE],
        license_id="licences-id-123",
        license_type=licences.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

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

  • pyenv

  • 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tollbit_python_sdk-0.3.0.tar.gz (15.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tollbit_python_sdk-0.3.0-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

Details for the file tollbit_python_sdk-0.3.0.tar.gz.

File metadata

  • Download URL: tollbit_python_sdk-0.3.0.tar.gz
  • Upload date:
  • Size: 15.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.12.6 Darwin/25.0.0

File hashes

Hashes for tollbit_python_sdk-0.3.0.tar.gz
Algorithm Hash digest
SHA256 f8bca39ac20cd143beccaa82c9d8431235abac6b5c31d2739468adcdadcac960
MD5 1eefd0cd63ead69fe7c437e55f65474c
BLAKE2b-256 c376bad1c5dc05a2b11168fd0cb8d4cf017b27f8a1d82eb0362e8d6b6ce8f87d

See more details on using hashes here.

File details

Details for the file tollbit_python_sdk-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: tollbit_python_sdk-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.12.6 Darwin/25.0.0

File hashes

Hashes for tollbit_python_sdk-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dc71457a632fad52460449a5309e6ff40c50abaec7ca2f84d2c87c71f0efd340
MD5 35edaa08656a8672cfdaede6f6cc86b7
BLAKE2b-256 0542159269fe713d9fd89b0362e0dbf24f933bcef37846266fff3cba365608a5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page