Skip to main content
GET
/
inventory
List finished-goods inventory
curl --request GET \
  --url https://api.autoprintfarm.com/public/v1/inventory \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "product_sku_id": "<string>",
      "sku": "<string>",
      "color": "<string>",
      "material": "<string>",
      "current_stock": 123,
      "low_stock_threshold": 123,
      "image_url": "<string>",
      "is_active": true,
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API keys are minted in the AutoPrintFarm web app under Settings → API Keys. Send as Authorization: Bearer apf_live_.... Keys are shown exactly once at creation and can be revoked at any time.

Response

Inventory list

success
enum<boolean>
required
Available options:
true
data
object[]
required