Skip to main content

Zinc API Python Library

fern shield pypi

zinc is the official TypeScript SDK for the Zinc API — search, buy, track, and return products from major online retailers (Amazon, Walmart, and more) through a single, type-safe API.

Keywords: e-commerce API, place an order, buy products programmatically, Amazon ordering API, checkout automation, order tracking, returns, product search, AI agent commerce, autonomous purchasing, MPP / HTTP 402.

Every method is fully typed. Instantiate ZincClient once and call resource methods like zinc.orders.createOrder(...) or zinc.search.search(...).

Table of Contents

Installation

pip install zinc

Reference

A full reference for this library is available here.

Usage

Instantiate and use the client with the following:

from zincio import ZincioApi, OrderProduct, Address

client = ZincioApi(
    api_key="<value>",
)

client.orders.create_order(
    products=[
        OrderProduct(
            url="https://www.amazon.com/dp/B07JGBW826",
        )
    ],
    shipping_address=Address(
        first_name="first_name",
        last_name="last_name",
        address_line1="address_line1",
        city="city",
        postal_code="postal_code",
        phone_number="phone_number",
    ),
    max_price=1,
)

Environments

This SDK allows you to configure different environments for API requests.

from zincio import ZincioApi
from zincio.environment import ZincioApiEnvironment

client = ZincioApi(
    environment=ZincioApiEnvironment.PRODUCTION,
)

Async Client

The SDK also exports an async client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use httpx.AsyncClient() instead of httpx.Client() (e.g. for the httpx_client parameter of this client).

import asyncio

from zincio import AsyncZincioApi

client = AsyncZincioApi(
    api_key="<value>",
)


async def main() -> None:
    await client.orders.create_order(
        products=[
            OrderProduct(
                url="https://www.amazon.com/dp/B07JGBW826",
            )
        ],
        shipping_address=Address(
            first_name="first_name",
            last_name="last_name",
            address_line1="address_line1",
            city="city",
            postal_code="postal_code",
            phone_number="phone_number",
        ),
        max_price=1,
    )


asyncio.run(main())

Exception Handling

When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error will be thrown.

from zincio.core.api_error import ApiError

try:
    client.orders.create_order(...)
except ApiError as e:
    print(e.status_code)
    print(e.body)

Advanced

Access Raw Response Data

The SDK provides access to raw response data, including headers, through the .with_raw_response property. The .with_raw_response property returns a "raw" client that can be used to access the .headers and .data attributes.

from zincio import ZincioApi

client = ZincioApi(...)
response = client.orders.with_raw_response.create_order(...)
print(response.headers)  # access the response headers
print(response.status_code)  # access the response status code
print(response.data)  # access the underlying object

Retries

The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retryable and the number of retry attempts has not grown larger than the configured retry limit (default: 2).

Which status codes are retried depends on the retryStatusCodes generator configuration:

legacy (current default): retries on

  • 408 (Timeout)
  • 409 (Conflict)
  • 429 (Too Many Requests)
  • 5XX (All server errors, including 500)

recommended: retries on

  • 408 (Timeout)
  • 409 (Conflict)
  • 429 (Too Many Requests)
  • 502 (Bad Gateway)
  • 503 (Service Unavailable)
  • 504 (Gateway Timeout)

Use the max_retries request option to configure this behavior.

client.orders.create_order(..., request_options={
    "max_retries": 1
})

Timeouts

The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.

from zincio import ZincioApi

client = ZincioApi(..., timeout=20.0)

# Override timeout for a specific method
client.orders.create_order(..., request_options={
    "timeout": 1
})

Custom Client

You can override the httpx client to customize it for your use-case. Some common use-cases include support for proxies and transports.

import httpx
from zincio import ZincioApi

client = ZincioApi(
    ...,
    httpx_client=httpx.Client(
        proxy="http://my.test.proxy.example.com",
        transport=httpx.HTTPTransport(local_address="0.0.0.0"),
    ),
)

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

Release files for zinc 2026.7.17

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for zinc 2026.7.17
File Size Uploaded
zinc-2026.7.17.tar.gz 75.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for zinc 2026.7.17
File Interpreter ABI Platform
zinc-2026.7.17-py3-none-any.whl Python 3 none any Details

Total release size: 208.4 kB

Release files / zinc-2026.7.17.tar.gz

Download URL zinc-2026.7.17.tar.gz
Size 75.0 kB
Tags Source
SHA-256 checksum
How to use checksums
d781c37921d9993e7fac2d1c0832b7d5808d522feb46bc5a9f178147317e5ab7
BLAKE2b-256 checksum
How to use checksums
99a31ce53d44d3f4c666dc2ecd2cfd5621330d31e559ca9c9d0bef517957a50f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / zinc-2026.7.17-py3-none-any.whl

Download URL zinc-2026.7.17-py3-none-any.whl
Size 133.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
f1cf377a8a0508143b08cda5d18916893d956cfde2333f33c5881c0fd60529cd
BLAKE2b-256 checksum
How to use checksums
001b08d08eb784ad698c83d7f0a10803e6734b83eebcbddf0d20196741c5c049
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2026.7.17 This release

2 release files

0.1.16

2 release files

0.1.15

2 release files

0.1.14

2 release files

0.1.13

2 release files

0.1.12

2 release files

0.1.11

2 release files

0.1.10

2 release files

0.1.9

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page