# Catalog Feed Access

Use the feed index first, then paginate product records.

- Feed index: https://demo.agentsfeed.dev/module/agentsfeed/feed
- Products endpoint: https://demo.agentsfeed.dev/module/agentsfeed/feed?resource=products
- Method: GET
- Content-Type: application/json
- Query params: `limit` (default 250, max 500), `after_id`, `updated_since`

Pagination flow:
1. Request first page with `limit=250`.
2. Continue with `after_id=paging.next_after_id` while `paging.has_more=true`.
3. Stop when `paging.has_more=false`.

Caching guidance: use response `ETag` and `Last-Modified` for conditional revalidation.