Find an API

Search public APIs with auth details & Postman guides

← All APIs

Fulfillment API

ebay · Commerce

Commerce No Auth Free & Open ecommerce

Use the Fulfillment API to complete the process of packaging, addressing, handling, and shipping each order on behalf of the seller, in accordance with the payment method and timing specified at checkout.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET getOrders

Use this call to search for and retrieve one or more orders based on their creation date, last modification date, or fulfillment status using the filter parameter. You can alternatively specify a list of orders using the orderIds parameter. Include the optional fieldGroups query

https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/order?limit=10&filter=example&offset=0&orderIds=example&fieldGroups=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/order?limit=10&filter=example&offset=0&orderIds=example&fieldGroups=example"
import requests
params = {
    "limit": "10",
    "filter": "example",
    "offset": "0",
    "orderIds": "example",
    "fieldGroups": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/order",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/order');
url.searchParams.set('limit', '10');
url.searchParams.set('filter', 'example');
url.searchParams.set('offset', '0');
url.searchParams.set('orderIds', 'example');
url.searchParams.set('fieldGroups', '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-fulfillment/v1.19.19/order")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("filter", "example")
	q.Set("offset", "0")
	q.Set("orderIds", "example")
	q.Set("fieldGroups", "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-fulfillment/v1.19.19/order")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "filter" => "example",
  "offset" => "0",
  "orderIds" => "example",
  "fieldGroups" => "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-fulfillment/v1.19.19/order?" . http_build_query([
    "limit" => "10",
    "filter" => "example",
    "offset" => "0",
    "orderIds" => "example",
    "fieldGroups" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Search Payment Dispute by Filters

This method is used retrieve one or more payment disputes filed against the seller. These payment disputes can be open or recently closed. The following filter types are available in the request payload to control the payment disputes that are returned: Dispute filed against a specific order

https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/payment_dispute_summary?limit=10&offset=0&order_id=example&open_date_to=example&buyer_username=example&open_date_from=example&payment_dispute_status=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/payment_dispute_summary?limit=10&offset=0&order_id=example&open_date_to=example&buyer_username=example&open_date_from=example&payment_dispute_status=example"
import requests
params = {
    "limit": "10",
    "offset": "0",
    "order_id": "example",
    "open_date_to": "example",
    "buyer_username": "example",
    "open_date_from": "example",
    "payment_dispute_status": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/payment_dispute_summary",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/payment_dispute_summary');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '0');
url.searchParams.set('order_id', 'example');
url.searchParams.set('open_date_to', 'example');
url.searchParams.set('buyer_username', 'example');
url.searchParams.set('open_date_from', 'example');
url.searchParams.set('payment_dispute_status', '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-fulfillment/v1.19.19/payment_dispute_summary")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("offset", "0")
	q.Set("order_id", "example")
	q.Set("open_date_to", "example")
	q.Set("buyer_username", "example")
	q.Set("open_date_from", "example")
	q.Set("payment_dispute_status", "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-fulfillment/v1.19.19/payment_dispute_summary")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "offset" => "0",
  "order_id" => "example",
  "open_date_to" => "example",
  "buyer_username" => "example",
  "open_date_from" => "example",
  "payment_dispute_status" => "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-fulfillment/v1.19.19/payment_dispute_summary?" . http_build_query([
    "limit" => "10",
    "offset" => "0",
    "order_id" => "example",
    "open_date_to" => "example",
    "buyer_username" => "example",
    "open_date_from" => "example",
    "payment_dispute_status" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getOrder

Use this call to retrieve the contents of an order based on its unique identifier, orderId . This value was returned in the getOrders call's orders.orderId field when you searched for orders by creation date, modification date, or fulfillment status. Include the optional fiel

https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/order/{orderId}?fieldGroups=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/order/{orderId}?fieldGroups=example"
import requests
params = {
    "fieldGroups": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/order/{orderId}",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/ebay.com/sell-fulfillment/v1.19.19/order/{orderId}');
url.searchParams.set('fieldGroups', '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-fulfillment/v1.19.19/order/{orderId}")
	q := baseURL.Query()
	q.Set("fieldGroups", "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-fulfillment/v1.19.19/order/{orderId}")
uri.query = URI.encode_www_form({
  "fieldGroups" => "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-fulfillment/v1.19.19/order/{orderId}?" . http_build_query([
    "fieldGroups" => "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 Fulfillment API?

Fulfillment 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. Fulfillment API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗