Skip to main content

Official Python SDK for the Rerout branded-link API.

Project description

rerout

Official Python SDK for the Rerout API.

Branded link infrastructure on Cloudflare. Create short links, render QR codes, read analytics, and verify webhook signatures.

Install

pip install rerout
# or
uv add rerout
# or
poetry add rerout

Requires Python 3.10+.

Usage

from rerout import Rerout, CreateLinkInput

rerout = Rerout(api_key="rrk_...")

link = rerout.links.create(
    CreateLinkInput(
        target_url="https://example.com/q4-sale",
        domain_hostname="go.brand.com",
        code="q4",
    )
)
print(link.short_url)  # https://go.brand.com/q4

stats = rerout.project.stats(days=7)
print(f"Last 7 days: {stats.total_clicks} clicks, {stats.qr_scans} QR scans")

The client can be used as a context manager to ensure the underlying HTTP connection pool is closed:

with Rerout(api_key="rrk_...") as rerout:
    link = rerout.links.get("q4")

API

Construction

from rerout import Rerout

rerout = Rerout(
    api_key="rrk_...",                  # required
    base_url="https://api.rerout.co",   # optional, defaults shown
    timeout=30.0,                       # optional, seconds
    client=None,                        # optional, inject your own httpx.Client
)

Inject a custom httpx.Client for proxies, retries, or shared connection pools. The SDK does not close clients it didn't create.

Links

from rerout import CreateLinkInput, UpdateLinkInput

rerout.links.create(CreateLinkInput(target_url=..., domain_hostname=..., code=...))
rerout.links.list(cursor=None, limit=None)
rerout.links.get(code)
rerout.links.update(code, UpdateLinkInput(target_url=...))
rerout.links.delete(code)
rerout.links.stats(code, days=30)

Every Link carries a read-only tags tuple — each Tag has an id, name, and color. Tags are populated on get, list, and update responses (empty on create). Tags themselves are managed through the tags namespace below; they cannot be attached/detached through CreateLinkInput / UpdateLinkInput.

link = rerout.links.get("q4")
for tag in link.tags:
    print(tag.name, tag.color)

UpdateLinkInput uses an UNSET sentinel to distinguish "leave this field alone" from "clear this field on the server" — pass None to clear, or just don't pass the field at all:

from rerout import UpdateLinkInput

# Clear the expiry, leave everything else untouched
rerout.links.update("q4", UpdateLinkInput(expires_at=None))

# Disable the link without touching SEO
rerout.links.update("q4", UpdateLinkInput(is_active=False))

Calling update with an UpdateLinkInput where no field has been set raises ReroutError(code='bad_request') without hitting the API.

Smart Links

Links carry Smart Link configuration: password_protected, max_clicks, click_count, track_conversions, plus routing_rules (a tuple of RoutingRule) and ab_variants (a tuple of AbVariant).

from rerout import AbVariant, CreateLinkInput, RoutingRule, UpdateLinkInput

rerout.links.create(
    CreateLinkInput(
        target_url="https://example.com",
        password="hunter2",
        max_clicks=500,
        track_conversions=True,
        routing_rules=[
            RoutingRule(
                condition_type="country",   # "country" | "device"
                condition_op="in",          # "is" | "is_not" | "in"
                condition_value="US,CA",
                target_url="https://example.com/na",
            )
        ],
        ab_variants=[
            AbVariant(target_url="https://example.com/a", weight=70),
            AbVariant(target_url="https://example.com/b", weight=30),
        ],
    )
)

# On update, password/max_clicks accept None to clear; routing_rules and
# ab_variants fully replace the existing config.
rerout.links.update("q4", UpdateLinkInput(password=None, max_clicks=None))
rerout.links.update("q4", UpdateLinkInput(routing_rules=[], ab_variants=[]))

Batch link creation

from rerout import CreateLinkInput

result = rerout.links.create_batch(
    [
        CreateLinkInput(target_url="https://example.com/1"),
        CreateLinkInput(target_url="https://example.com/2", code="promo"),
    ]
)
print(result.created, "of", result.total)
for item in result.results:
    print(item.index, item.ok, item.code or item.error)

The batch endpoint accepts target_url, code, expires_at, and domain_hostname per link; other fields are ignored.

Conversions

result = rerout.conversions.record(
    "clk_123", "purchase", value_cents=4999, currency="USD"
)
print(result.recorded, result.duplicate)

value_cents and currency are optional. The call is idempotent — a repeat for the same click + event returns duplicate=True.

Tags

List, create, update, and delete the project's tags. The project is resolved from the API key, so no project id appears in the path.

from rerout import CreateTagInput, UpdateTagInput

# List tags with their live link counts
result = rerout.tags.list()
for tag in result.tags:
    print(tag.id, tag.name, tag.color, tag.link_count)  # TagSummary

# Create a tag — color is optional (server defaults to "teal")
tag = rerout.tags.create(CreateTagInput(name="Spring 2026", color="teal"))

# Update name and/or color — only the fields you set are sent
rerout.tags.update(tag.id, UpdateTagInput(color="red"))

# Delete a tag — also drops its assignments from every link
rerout.tags.delete(tag.id)  # -> True

tags.list returns TagSummary objects (id, name, color, link_count); create/update return a plain Tag (no link_count). Like links.update, omitted UpdateTagInput fields are left unchanged — but there is no client-side empty-payload guard: the server returns 400 for a fully empty patch.

Project

rerout.project.stats(days=30)  # -> ProjectStats
rerout.project.me()            # -> ProjectInfo

QR codes

from rerout import QrOptions

# Pure URL builder — no network call
rerout.qr.url("q4", QrOptions(size=12, ecc="H", domain="go.brand.com"))

# Fetches the rendered SVG with the bearer token attached
svg = rerout.qr.svg("q4", QrOptions(refresh=True))

QR options:

Field Type Notes
size int Module size in px. 1–32. Server default 8.
margin int Quiet zone in modules. 0–16. Server default 4.
ecc 'L' | 'M' | 'Q' | 'H' Error correction level.
domain str Force the QR to encode a specific verified custom domain.
refresh str | bool Cache-bust on regenerate. True is sent as 1; strings pass through.

Webhook management

Register, list, and remove webhook endpoints for the project that owns the API key. The project is resolved from the key, so no project id appears in the path.

from rerout import CreateWebhookInput

created = rerout.webhooks.create(
    CreateWebhookInput(
        name="Prod deliveries",
        url="https://hooks.brand.com/rerout",
        events=["link.clicked", "link.created"],
    )
)
print(created.endpoint.id)
print(created.signing_secret)  # whsec_… — shown once, store it now

result = rerout.webhooks.list()
for endpoint in result.endpoints:
    print(endpoint.id, endpoint.url, endpoint.events)
print(result.event_types)  # event types the server can deliver

rerout.webhooks.delete(created.endpoint.id)  # -> True (idempotent)

The signing_secret returned by create is shown once — persist it and use it with verify_rerout_signature (below) to authenticate deliveries.

Webhook signature verification

from rerout import verify_rerout_signature

ok = verify_rerout_signature(
    raw_body=request.body.decode(),
    signature_header=request.headers["x-rerout-signature"],
    secret=settings.REROUT_WEBHOOK_SECRET,
)
if not ok:
    return Response(status=401)

Defaults to a 5-minute timestamp tolerance; pass tolerance_seconds=0 to disable that check.

Error handling

Every method raises ReroutError on failure:

from rerout import Rerout, ReroutError, CreateLinkInput

try:
    rerout.links.create(CreateLinkInput(target_url="http://insecure.example"))
except ReroutError as err:
    print(err.code)     # 'bad_target_url'
    print(err.status)   # 400
    print(err.message)  # 'target_url must use https.'
    if err.is_rate_limited:
        ...  # back off

Synthetic codes when the server didn't return a JSON body: network_error, timeout, unexpected_response, unauthorized, forbidden, not_found, rate_limited, server_error, client_error, missing_api_key, bad_request.

Local development

python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest
mypy src
ruff check src tests
ruff format --check src tests

License

MIT — see LICENSE in the workspace root.

Repository

https://github.com/ModestNerds-Co/rerout-sdks

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

rerout-0.5.0.tar.gz (31.4 kB view details)

Uploaded Source

Built Distribution

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

rerout-0.5.0-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

Details for the file rerout-0.5.0.tar.gz.

File metadata

  • Download URL: rerout-0.5.0.tar.gz
  • Upload date:
  • Size: 31.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for rerout-0.5.0.tar.gz
Algorithm Hash digest
SHA256 54619a4c7663a28bb698680aa09d3db9af21215f2f0fd33f09cc06e9103ea9a9
MD5 eb2e204be081b177338a90eb098ee55c
BLAKE2b-256 d5a580c07fe594ae070ea3280cfc4b105bf37f1343a47ee5d3acd84962b9a239

See more details on using hashes here.

File details

Details for the file rerout-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: rerout-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for rerout-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ab966596debf35d29446c5477467904302c5e64eb28f9fbe6d46ae019b5c2da3
MD5 61afc7f653b7f4056c9bdea9b3b2db24
BLAKE2b-256 0f4de264171cfdf5ad69396b9d6fd9378cc521254281a06e133bb61af493b01a

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