Skip to main content
Droplinked publishes every merchant’s public catalog as a Stripe Agentic Commerce Protocol (ACP) product feed. This is the surface that agentic shopping experiences (e.g. ChatGPT) ingest — so a merchant’s existing inventory is discoverable and purchasable by agents without the merchant building anything new.

Live feed

ACP Feed (live)

Always-current public feed at https://apiv3.droplinked.com/feed/acp.json. Cursor-paginated; serves the full public catalog (thousands of items). Updated on product changes plus a short refresh cycle for inventory + price.

Feed shape

{
  "items": [
    {
      "id": "…",
      "item_group_id": "…",
      "title": "…",
      "description": "…",
      "link": "https://…",
      "image_link": "https://…",
      "availability": "in_stock",
      "price": "300.00 USD",
      "condition": "new",
      "brand": "…"
    }
  ],
  "next_cursor": "…",
  "generated_at": "…"
}
FieldMeaning
id / item_group_idProduct (variant) and parent grouping ids
title / descriptionDisplay copy
link / image_linkStorefront product URL and primary image
availability / conditionStock + condition (in_stock, new, …)
priceAmount + currency
brandMerchant/brand
Paginate by following next_cursor until it’s absent. generated_at reflects the snapshot time.

Quick agent integration

# Browse the live feed (first 3 items)
curl -sS https://apiv3.droplinked.com/feed/acp.json | jq '.items[0:3]'

How it’s used

  • Agents & shopping surfaces ingest the feed to make Droplinked inventory searchable and buyable in-context.
  • The MCP server’s get_feed tool returns this URL so an agent can pull the catalog directly.
  • Purchases route through the Stripe ACP / x402 layer with the 70/20/10 revenue split.

ACP-compatible surfaces

  • Stripe ACP-aware agents — Droplinked’s feed is registered with Stripe’s ACP partner catalog
  • OpenAI / ChatGPT shopping surfaces — feed URL can be added to agent tool-defs as a discovery source
  • Visa Intelligent Commerce (when GA) — same feed format

MCP Server

Direct programmatic API access for agents (search, fetch, checkout).

OpenAPI Spec

Full machine-readable API surface (cart, checkout, orders) for fresher-than-feed data.

Connect your store

Make your existing inventory agent-shoppable.

Cache + refresh

  • Feed regenerates on product create/edit/delete plus a short refresh cycle for inventory + price
  • For agents requiring up-to-the-second data, hit the cart/checkout endpoints in the OpenAPI Spec directly