Skip to main content
1

Create your Zinc account

Sign up here to get started. You will need to deposit funds into your Zinc account to use the API.
2

Get Your API Credentials

After signing up, visit your Zinc dashboard to find your client token.
3

Make Your First API Call

Here’s h ow to place an order using curl:
export ZINC_API_KEY=<api_key>;
curl -X POST https://api.zinc.com/orders \
    -H "Authorization: Bearer $ZINC_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "products": [{
        "url": "https://www.zinc.com/shop/stickers",
        "quantity": 1
      }],
      "max_price": 100,
      "shipping_address": {
        "first_name": "...",
        "last_name": "...",
        "address_line1": "...",
        "address_line2": null,
        "city": "...",
        "state": "...",
        "postal_code": "...",
        "phone_number": "..."
      }
    }';
Replace <api_key> with your actual token. Never share your client token publicly.
If successful, you’ll get a successful JSON response with the request data. The order will now show up in your dashboard.

Need help? Contact support or check out the What is Zinc? page for more info.