NEWZinc Agent — agents buy anything online
Login
B&H Photo Video logo
ELECTRONICS

Buy from B&H Photo Video via API

Programmatically buy cameras and pro equipment from B&H. Automate photography and video gear purchases via Zinc.

Try buying from B&H Photo Video with an AI agent

Install the universal-checkout skill (npx skills add zincio/skills --skill universal-checkout) to buy from B&H Photo Video and 50+ retailers. Paste the prompt below into Cursor, Claude Code, or OpenClaw.

What is B&H Photo Video?

B&H Photo Video is the premier destination for photography, video, audio, and professional equipment, trusted by creators and professionals worldwide. Zinc's B&H API integration provides programmatic access to their deep catalog of cameras, lenses, lighting, audio gear, computers, and pro video equipment.

Ideal for media production procurement tools, photography rental platforms, studio equipment management systems, and any application serving creative professionals via the API.

Retailer:bhphotovideo.com|US Rank:#44|Free Shipping:$49+

What you can build with the B&H Photo Video API

Build with the B&H Photo Video integration API for search, ordering, tracking, and returns.

B&H Photo Video Order Placement API

Place orders with a product URL and shipping address. No checkout flows required — Zinc handles the retailer-side workflow and processes orders asynchronously.

POST/orders
GET API KEY
{
  "products": [
    {
      "url": "https://bhphotovideo.com/...",
      "quantity": 1
    }
  ],
  "shipping_address": {
    "first_name": "Jane",
    "last_name": "Doe",
    "address_line1": "123 Main St",
    "city": "San Francisco",
    "state": "CA",
    "postal_code": "94105",
    "country": "US",
    "phone_number": "5551234567"
  },
  "max_price": 39900
}

B&H Photo Video Order Status API

Retrieve order details including item statuses, shipping address, and processing results. Poll to track progress from pending through to delivery.

GET/orders/{order_id}
GET API KEY
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "order_placed",
  "max_price": 39900,
  "items": [
    {
      "url": "https://bhphotovideo.com/...",
      "quantity": 1,
      "status": "shipped"
    }
  ],
  "tracking_numbers": [
    {
      "carrier": "ups",
      "tracking_number": "1Z999AA10123456784",
      "created_at": "2026-01-15T14:30:00Z"
    }
  ],
  "created_at": "2026-01-15T10:00:00Z"
}

B&H Photo Video Shipment Tracking API

Tracking numbers are automatically extracted from retailer shipping notifications and returned in the order response. Supports UPS, FedEx, USPS, Amazon Logistics, and DHL.

GET/orders/{order_id}
GET API KEY
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "order_placed",
  "tracking_numbers": [
    {
      "carrier": "ups",
      "tracking_number": "1Z999AA10123456784",
      "created_at": "2026-01-15T14:30:00Z"
    },
    {
      "carrier": "amazon",
      "tracking_number": "TBA123456789000",
      "created_at": "2026-01-16T09:15:00Z"
    }
  ]
}

B&H Photo Video Managed Accounts

Use Zinc-managed checkout accounts or bring your own retailer credentials. Managed accounts handle login, 2FA, and payment automatically — no account setup required.

GET/managed-accounts
GET API KEY
{
  "credentials": [
    {
      "short_id": "zn_acct_a1b2c3d4",
      "email": "orders@example.com",
      "retailer": "bh_photo_video",
      "has_totp": true,
      "has_forwarding": true
    }
  ],
  "total": 1
}

B&H Photo Video API Integration FAQ

What can I do with the B&H Photo Video API integration?

You can search products, place orders, track shipments, and handle returns through a single Zinc API integration for B&H Photo Video. Search by keyword or product URL to find items on bhphotovideo.com, then place orders with a shipping address and max price — no checkout UI required on your side.

Use POST /orders to submit a purchase request, GET /orders/{order_id} to poll status, and webhook subscriptions for async shipping and delivery events. Returns are supported through the same API, so you can build search-to-return workflows without maintaining a separate B&H Photo Video integration.

Do I need to build a checkout flow for B&H Photo Video?

No. Zinc handles the retailer-side ordering workflow on bhphotovideo.com, so your app can place orders directly via API calls. Send a POST /orders request with the product URL, quantity, shipping address, and max_price in cents — Zinc manages login, payment, and fulfillment on B&H Photo Video's site.

Your application never needs to embed B&H Photo Video's checkout or store retailer credentials unless you choose to bring your own account via managed accounts. This is especially useful for rewards platforms, gifting apps, and AI agents that need to buy from B&H Photo Video programmatically.

What is the free shipping minimum for B&H Photo Video?

B&H Photo Video offers free standard shipping on orders of $49 or more before tax. Free expedited shipping on most orders over $49. Orders below the minimum will incur a shipping fee. Note that shipping policies can change, so check B&H Photo Video's website for the most current thresholds.

When placing orders through the Zinc API, set an appropriate max_price to cover the product cost plus estimated shipping if the order total is below B&H Photo Video's free shipping threshold. Zinc processes the order at bhphotovideo.com and refunds any unused amount after fulfillment completes.

Can I get shipment tracking updates for B&H Photo Video orders?

Yes. When B&H Photo Video ships your order, Zinc extracts tracking numbers from retailer shipping notifications and returns them in the order response. Each entry includes the carrier, tracking number, and timestamp.

Poll GET /orders/{order_id} for the latest status, or subscribe to webhook events for shipping and delivery updates without polling. Supported carriers include UPS, FedEx, USPS, Amazon Logistics, and DHL — so you can surface tracking in your app or pass it through to end customers automatically.

How do I start using the B&H Photo Video integration API?

Create an account, get your API key, and follow the Zinc API docs to send your first search or order request. You'll need a Zinc API key (prefixed zn_) for authenticated endpoints like orders and product search.

Start with GET /retailers to confirm B&H Photo Video is supported, then try a product search or place an order with a bhphotovideo.com product URL. For AI agent workflows, the /agent/orders endpoint supports MPP payment — no Zinc account required for the buyer.

More Electronics APIs