Find an API

Search public APIs with auth details & Postman guides

← All APIs

Feed API

ebay · Commerce

Commerce No Auth Free & Open ecommerce

The Feed API lets sellers upload input files, download reports and files including their status, filter reports using URI parameters, and retrieve customer service metrics task details.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET getCustomerServiceMetricTasks

Use this method to return an array of customer service metric tasks. You can limit the tasks returned by specifying a date range. Note: You can pass in either the look_back_days or date_range , but not both.

https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/customer_service_metric_task?limit=10&offset=0&feed_type=example&date_range=example&look_back_days=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/customer_service_metric_task?limit=10&offset=0&feed_type=example&date_range=example&look_back_days=example"
import requests
params = {
    "limit": "10",
    "offset": "0",
    "feed_type": "example",
    "date_range": "example",
    "look_back_days": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/customer_service_metric_task",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/customer_service_metric_task');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('feed_type', 'example');
url.searchParams.set('date_range', 'example');
url.searchParams.set('look_back_days', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/customer_service_metric_task")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("feed_type", "example")
	q.Set("date_range", "example")
	q.Set("look_back_days", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/customer_service_metric_task")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "offset" => "0",
  "feed_type" => "example",
  "date_range" => "example",
  "look_back_days" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/customer_service_metric_task?" . http_build_query([
    "limit" => "10",
    "offset" => "0",
    "feed_type" => "example",
    "date_range" => "example",
    "look_back_days" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getInventoryTasks

This method searches for multiple tasks of a specific feed type, and includes date filters and pagination.

https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/inventory_task?limit=10&offset=0&feed_type=example&date_range=example&schedule_id=example&look_back_days=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/inventory_task?limit=10&offset=0&feed_type=example&date_range=example&schedule_id=example&look_back_days=example"
import requests
params = {
    "limit": "10",
    "offset": "0",
    "feed_type": "example",
    "date_range": "example",
    "schedule_id": "example",
    "look_back_days": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/inventory_task",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/inventory_task');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('feed_type', 'example');
url.searchParams.set('date_range', 'example');
url.searchParams.set('schedule_id', 'example');
url.searchParams.set('look_back_days', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/inventory_task")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("feed_type", "example")
	q.Set("date_range", "example")
	q.Set("schedule_id", "example")
	q.Set("look_back_days", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/inventory_task")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "offset" => "0",
  "feed_type" => "example",
  "date_range" => "example",
  "schedule_id" => "example",
  "look_back_days" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/inventory_task?" . http_build_query([
    "limit" => "10",
    "offset" => "0",
    "feed_type" => "example",
    "date_range" => "example",
    "schedule_id" => "example",
    "look_back_days" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getOrderTasks

This method returns the details and status for an array of order tasks based on a specified feed_type or schedule_id . Specifying both feed_type and schedule_id results in an error. Since schedules are based on feed types, you can sp

https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/order_task?limit=10&offset=0&feed_type=example&date_range=example&schedule_id=example&look_back_days=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/order_task?limit=10&offset=0&feed_type=example&date_range=example&schedule_id=example&look_back_days=example"
import requests
params = {
    "limit": "10",
    "offset": "0",
    "feed_type": "example",
    "date_range": "example",
    "schedule_id": "example",
    "look_back_days": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/order_task",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/order_task');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('feed_type', 'example');
url.searchParams.set('date_range', 'example');
url.searchParams.set('schedule_id', 'example');
url.searchParams.set('look_back_days', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/order_task")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("feed_type", "example")
	q.Set("date_range", "example")
	q.Set("schedule_id", "example")
	q.Set("look_back_days", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/order_task")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "offset" => "0",
  "feed_type" => "example",
  "date_range" => "example",
  "schedule_id" => "example",
  "look_back_days" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/ebay.com/sell-feed/v1.3.1/order_task?" . http_build_query([
    "limit" => "10",
    "offset" => "0",
    "feed_type" => "example",
    "date_range" => "example",
    "schedule_id" => "example",
    "look_back_days" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Feed API?

Feed API is a Commerce API. Developers commonly use commerce APIs for:

  • syncing product catalogues and inventory levels
  • building price comparison and deal-finder tools
  • processing orders and tracking shipments
  • managing customer wishlists and reviews
  • automating abandoned-cart and promotional emails

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Feed API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗