Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHubOpen Standards
Resources
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / E Commerce / Ebay / Item Feed Service
Item Feed Service logo

Ebay Item Feed Service

Browse all Ebay APIs
✓ Official Vendor SpecE CommerceStorefrontoauth24 EndpointsREST

For Agents

Download bulk eBay item feed files (full and hourly snapshots) by category and marketplace for offline catalogue ingestion. Limited Release access only.

Use for: Download today's full item feed for the Electronics category on the US marketplace, I want to grab the hourly snapshot of changed items in Fashion, Retrieve the item-group feed for Home & Garden with variation data, Get the priority item feed for the Motors category

Not supported: Does not handle item-level lookup, search, or pricing queries - use for bulk per-category catalogue downloads only.

The eBay Item Feed Service lets approved Buy API partners download bulk TSV_GZIP feed files of eBay items by category, marketplace, and date, plus hourly snapshot files of items that have changed within the last hour. Agents and applications can ingest the full eBay catalogue offline rather than scraping listings or paginating through search. Access is gated to Limited Release partners - applications must be approved by eBay business units before this service can be used in production.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Item Feed Service to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Item Feed Service, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Febay.com%2Fbuy-feed" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Febay.com%2Fbuy-feed" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Item Feed Service API.

Download a full TSV_GZIP item feed for a category and marketplace on a given date

Pull an hourly snapshot of items that changed within the last hour for a category

Retrieve item-group feed files to capture variation-level listings in bulk

Fetch priority item feeds for promoted or business-relevant inventory subsets

Stream multi-gigabyte feed files using HTTP Range requests for resumable downloads

Filter the resulting feeds with the open-source eBay Feed SDK to curate items by aspect

Use Cases

Patterns agents use Item Feed Service API for, with concrete tasks.

★ Bulk catalogue ingestion for a price-monitoring agent

Approved partners use the Item Feed Service to download daily full-category TSV_GZIP files instead of paginating through Browse search. A monitoring agent can ingest tens of millions of listings per day per marketplace, then run hourly snapshot files to keep its mirror current. The Feed SDK handles chunked download, resume on failure, and field-level filtering so the agent only stores the columns it needs.

Download today's full item feed for category 9355 on EBAY_US, then pull the hourly snapshot file produced in the last hour and merge changed item IDs into the local mirror

Variation-aware product reconciliation

The /item_group endpoint returns feed files of items with variations (size, colour, configuration) grouped by parent listing. Resellers and aggregators reconcile their internal SKUs against eBay variation IDs without writing per-item Browse calls. One feed file replaces tens of thousands of /item/get_items_by_item_group requests from the Browse API.

Download the item_group feed for category 11450 on EBAY_GB and emit a CSV of parent-listing-ID to variation-ID mappings

Promoted listings and priority inventory tracking

The /item_priority resource exposes feeds of items flagged as priority by eBay (promoted or business-managed inventory subsets). Affiliate networks and demand-side platforms ingest these feeds to keep their ad inventory aligned with what eBay is actively pushing, with new files published on the standard daily cadence.

Pull the latest /item_priority feed for EBAY_US and write the item IDs to a downstream advertising bid table

AI agent integration via Jentic

An AI agent that monitors eBay catalogue movements queries Jentic for 'download bulk eBay item feed' and Jentic returns the Item Feed Service /item operation with its required parameters (category_id, date, marketplace). The agent loads the schema, executes the call with a partner OAuth token issued through Jentic's vault, and streams the TSV_GZIP file to local storage - without storing the OAuth secret in agent memory.

Use Jentic to search 'download bulk eBay item feed', load the /item operation schema, and execute it for category 9355 on EBAY_US for today's date

Key Endpoints

4 endpoints — the ebay item feed service lets approved buy api partners download bulk tsv_gzip feed files of ebay items by category, marketplace, and date, plus hourly snapshot files of items that have changed within the last hour.

METHOD

PATH

DESCRIPTION

GET

/item

Download a full TSV_GZIP item feed by category, date, and marketplace

GET

/item_group

Download an item-group feed with variation data

GET

/item_priority

Download a priority item feed

GET

/item_snapshot

Download an hourly snapshot of changed items

GET

/item

Download a full TSV_GZIP item feed by category, date, and marketplace

GET

/item_group

Download an item-group feed with variation data

GET

/item_priority

Download a priority item feed

GET

/item_snapshot

Download an hourly snapshot of changed items

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the eBay Item Feed Service by hand means running the OAuth 2.0 client-credentials flow for the buy.item.feed scope, caching the token, and setting the required category, date, and marketplace parameters on each bulk download. Through Jentic you install once, import the Item Feed Service from the API Directory, store the client credentials once, and your agent calls it.

Permission scoping

Permission scoping

The Item Feed Service selects feeds through query parameters like category_id and marketplace_id rather than URL path segments, so scope your agent to the operations it needs, such as downloading an item feed or an item snapshot. Other feed types stay out of the allowed set unless you add them.

Credential management

Credential isolation

Your eBay OAuth client credentials are stored once, encrypted, by your own Jentic One instance, which exchanges them for a scoped token and injects it at execution time. The raw client secret never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'download bulk eBay item feed', and Jentic returns the matching /item or /item_snapshot operation with its required parameters, including category_id, date, and marketplace_id, so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

eBay Browse API

→

Browse API offers per-item search and lookup; Item Feed Service offers bulk per-category downloads.

Use Browse for low-volume, real-time item lookup or keyword search. Use Item Feed Service when ingesting tens of millions of items into an offline mirror.

Complementary

eBay Buy Marketing API

→

Buy Marketing surfaces best-selling and merchandised products; pair with feeds for attribute enrichment.

Use Buy Marketing to identify trending products, then use Item Feed Service to enrich those products with full-catalogue attribute data.

Complementary

eBay Developer Analytics API

→

Developer Analytics exposes the rate-limit and quota state of feed calls.

Use Developer Analytics before scheduling a large feed pull to confirm remaining quota and avoid burning the daily allotment.

FAQs

Specific to using Item Feed Service API through Jentic.

What authentication does the Item Feed Service use?

The Item Feed Service uses OAuth 2.0 with the Client_Credentials grant. Partners obtain an Application access token scoped to https://api.ebay.com/oauth/api_scope/buy.item.feed and pass it as a Bearer token. Through Jentic, the OAuth client secret is held in your Jentic One instance and the agent receives a scoped access token only - the raw secret never enters agent context.

Can I download the entire eBay catalogue with the Item Feed Service?

You can download per-category daily full feeds (/item) plus hourly snapshot files (/item_snapshot), but only for categories and marketplaces your partner application has been approved for. There is no single endpoint that returns every listing on eBay - feeds are partitioned by category_id, date, and marketplace_id (e.g. EBAY_US).

What are the rate limits for the Item Feed Service?

Feed downloads are governed by eBay's Buy APIs rate limits, which are issued per application and per partner agreement rather than as a fixed public quota. Daily call counts are visible through the Developer Analytics API. Because each download can be multi-gigabyte, the practical bottleneck is bandwidth and HTTP Range chunking, not call count.

How do I download an item snapshot file through Jentic?

Search Jentic for 'download eBay item snapshot', load the /item_snapshot operation schema, and execute it with category_id, snapshot_date (ISO 8601 hour), and marketplace_id. Install with pip install jentic and call client.search, client.load, then client.execute. Get started with Jentic One, the self-hosted execution layer.

Is the Item Feed Service free?

The API itself has no per-call charge, but it is a Limited Release service - you must be approved by an eBay business unit before production access is granted. Apply through the Buy APIs Requirements page on developer.ebay.com.

What format are the feed files returned in?

Feed files are returned as TSV_GZIP - tab-separated values, gzip-compressed. The open-source eBay Feed SDK (Java) handles chunked download, decompression, and field-level filtering, and is the recommended client for production ingestion.

Can I limit what my agent is allowed to do with the eBay Item Feed API?

Yes. Because you run Jentic One yourself, your own rules decide which Item Feed operations the agent may call, so you can allow only the ones it needs, such as downloading a full item feed or pulling an hourly item snapshot, while keeping item_group and item_priority feeds out of the allowed set. Since feeds are selected through query parameters like category_id and marketplace_id rather than URL path segments, scoping is done per operation. Your eBay OAuth client credentials stay stored in your own instance and are exchanged for a scoped token at execution time, so the agent never sees the raw secret.

GET STARTED

Start building with Item Feed Service API

Explore with Jentic One
View OpenAPI Document