Feedico demo
Pick a network and store name filter, then inspect sample coupons, the same JSON shape as the customer API, and a WordPress-friendly HTML snippet.
Live sample rows from a connected account (read-only preview; does not use your API token or monthly quota). Example requests target https://api.feedico.io - replace YOUR_FDICO_TOKEN with your dashboard token.
3. Sample coupons
No coupons matched this network and store filter for the demo account. Try another combination or sync merchants in the dashboard.
4. Call the API (examples + demo results)
Request body matches your selections above. Result shows the same JSON shape as a live token call - loaded here from the demo backend without spending your monthly quota.
Request body (JSON)
Sent as the POST body to both endpoints below - formatted for readability.
{
"page": 1,
"pageSize": 12,
"provider": "cj_affiliate",
"firmName": "Nike"
}Firms - POST /api/v1/me/networks
curl -sS -X POST "https://api.feedico.io/api/v1/me/networks" \
-H "Authorization: Bearer YOUR_FDICO_TOKEN" \
-H "Content-Type: application/json" \
--data-raw "{\"page\":1,\"pageSize\":12,\"provider\":\"cj_affiliate\",\"firmName\":\"Nike\"}"Response (demo, formatted JSON)
-
Coupons - POST /api/v1/me/coupons
curl -sS -X POST "https://api.feedico.io/api/v1/me/coupons" \
-H "Authorization: Bearer YOUR_FDICO_TOKEN" \
-H "Content-Type: application/json" \
--data-raw "{\"page\":1,\"pageSize\":12,\"provider\":\"cj_affiliate\",\"firmName\":\"Nike\"}"Response (demo, formatted JSON)
-
5. Import to WordPress (preview)
Styled preview of simple HTML you can paste into a Custom HTML block or template. Titles and links come from the sample coupons above.
HTML snippet
<div class="feedico-coupons"> <ul style="list-style:none;padding:0;margin:0;display:grid;gap:12px;font-family:system-ui,sans-serif;"> </ul> </div>
6. Start free
Connect your networks, issue an API token, and pull your own catalogs with the same JSON shape.
Start free