Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.batchrelay.com/llms.txt

Use this file to discover all available pages before exploring further.

The v1 API supports a fixed set of product aliases that you include in each order item. Each alias maps to a specific print product, so you always reference products by their canonical name rather than a numeric ID or SKU. Use the table below to find the alias that matches the product you want to fulfill.

Product Aliases

AliasDescription
photo-print-5x75×7 photo print.
photo-print-8x108×10 photo print.
photo-print-16x2016×20 photo print.
walletsWallet print set.
magnetMagnet print.
magnet-and-5x7Combined magnet plus 5×7 print.

Item Structure

Each item in your order payload requires a product alias, a quantity, and an image object that points to the source image URL. The following example shows a single 5×7 photo print item:
{
  "product": "photo-print-5x7",
  "quantity": 1,
  "image": {
    "url": "https://images.batchrelay.com/team-5x7.jpg"
  }
}
Your image URL must be publicly accessible at the time the order is submitted. Batch Relay fetches the image during fulfillment processing, so presigned or short-lived URLs may expire before the file is retrieved.