Amazon Selling Partner API Listings API

The Listings API from Amazon Selling Partner API — 1 operation(s) for listings.

Operations 3

PUT /listings/2021-08-01/items/{sellerId}/{sku} Create or fully update a listings item #
PATCH /listings/2021-08-01/items/{sellerId}/{sku} Partial update of a listings item #
DELETE /listings/2021-08-01/items/{sellerId}/{sku} Delete a listings item #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amazon-seller-central-listings-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amazon-seller-central-listings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amazon Selling Partner API (SP-API) Authentication Listings API
  version: 1.0.0
  description: 'Modern REST API enabling Amazon sellers, vendors, and third-party

    developers to programmatically access Seller Central data and

    operations. Coverage includes catalog management, orders, inventory,

    pricing, fulfillment, reports, feeds, finances, notifications, and

    tokens. Authentication uses Login with Amazon (LWA) OAuth 2.0

    access tokens (`x-amz-access-token`) and optional Restricted Data

    Tokens for PII. SP-API replaces the legacy Amazon MWS.

    '
  contact:
    name: Amazon Selling Partner API
    url: https://developer-docs.amazon.com/sp-api
servers:
- url: https://sellingpartnerapi-na.amazon.com
  description: North America
- url: https://sellingpartnerapi-eu.amazon.com
  description: Europe
- url: https://sellingpartnerapi-fe.amazon.com
  description: Far East
security:
- LwaBearer: []
tags:
- name: Listings
paths:
  /listings/2021-08-01/items/{sellerId}/{sku}:
    parameters:
    - in: path
      name: sellerId
      required: true
      schema:
        type: string
    - in: path
      name: sku
      required: true
      schema:
        type: string
    put:
      tags:
      - Listings
      summary: Create or fully update a listings item
      operationId: putListingsItem
      responses:
        '200':
          description: OK
    patch:
      tags:
      - Listings
      summary: Partial update of a listings item
      operationId: patchListingsItem
      responses:
        '200':
          description: OK
    delete:
      tags:
      - Listings
      summary: Delete a listings item
      operationId: deleteListingsItem
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    LwaBearer:
      type: apiKey
      in: header
      name: x-amz-access-token
      description: Login with Amazon (LWA) OAuth 2.0 access token.