HomeDocumentationCode SamplesAPI ReferenceAnnouncementsModelsRelease NotesFAQGitHubVideos
Developer HubAPI StatusSupport
Documentation
Developer HubAPI StatusSupport

Sellers API v1 Use Case Guide

Retrieve seller account and marketplace information.

API Version: 1

What is the Sellers API?

The Selling Partner API for Sellers (Sellers API) provides information about seller accounts and marketplaces. The returned information includes:

  • The marketplaces in which the seller can list items
  • The default language and currency of a marketplace
  • Whether the seller has suspended listings
  • Business information of the seller

For details about the operations, data types, and schemas of the Sellers API, refer to Sellers API v1 Reference.

Warning

The getAccount operation is currently in beta. To avoid errors and unexpected behavior, do not use this operation until it is released for general availability.

Tutorial: Get the account information of a seller

Learn how to retrieve the account information of a seller. The information that you retrieve includes a list of marketplace participations, business information, and selling plan details.

Prerequisites

To complete this tutorial, you must complete the following prerequisites:

Get account information

Call the getAccount operation.

Request parameters

None.

Request example

GET /sellers/v1/account

Response properties

A successful response includes the following properties.

NameDescriptionSchema
businessInformation about the seller's business. Depending on the seller's businessType, you can omit certain fields.Business
businessTypeThe type of business for which the seller account is registered.enum (BusinessType)
marketplaceParticipationListA list of marketplace participations.< MarketplaceParticipationList> array
primaryContactInformation about the seller's primary contact.PrimaryContact
sellingPlanSelling plan details.enum (SellingPlan)

Response example

{
  "businessType": "PRIVATE_LIMITED",
  "marketplaceParticipationList": [
    {
      "marketplace": {
        "id": "ATVPDKIKX0DER",
        "name": "United States",
        "countryCode": "US",
        "domainName": "www.amazon.com"
      },
      "storeName": "BestSellerStore",
      "participation": {
        "isParticipating": true,
        "hasSuspendedListings": false
      }
    }
  ],
  "sellingPlan": "PROFESSIONAL",
  "business": {
    "name": "BestSeller Inc.",
    "nonLatinName": "ベストセラー株式会社",
    "registeredBusinessAddress": {
      "addressLine1": "123 Main St",
      "addressLine2": "Suite 500",
      "city": "Seattle",
      "stateOrProvinceCode": "WA",
      "postalCode": "98101",
      "countryCode": "US"
    },
    "companyRegistrationNumber": "123456789",
    "companyTaxIdentificationNumber": "987654321"
  },
  "primaryContact": {
    "name": "John Doe",
    "nonLatinName": "ジョン・ドゥ",
    "address": {
      "addressLine1": "456 Oak St",
      "addressLine2": "Apt 12",
      "city": "Seattle",
      "stateOrProvinceCode": "WA",
      "postalCode": "98102",
      "countryCode": "US"
    }
  }
}

Tutorial: Get the market participation of a seller

Learn how to get a list of Amazon marketplaces in which the seller can list items. The information that you retrieve includes marketplace information, the seller's store name in the marketplace, whether the seller participates in the marketplace, and whether the seller has suspended listings in the marketplace.

Prerequisites

To complete this tutorial, you must complete the following prerequisites:

Get marketplace participation

Call the getMarketplaceParticipations operation.

Request parameters

None.

Request example

GET /sellers/v1/marketplaceParticipations

Response

A successful response includes the following elements.

NameDescriptionSchema
marketplaceParticipationListA list of Amazon marketplaces where the seller can list items and customers can view and purchase items.< MarketplaceParticipationList> array

Response example

[
  {
    "marketplace": {
      "id": "ATVPDKIKX0DER",
      "name": "Amazon.com",
      "countryCode": "US",
      "defaultCurrencyCode": "USD",
      "defaultLanguageCode": "en_US",
      "domainName": "www.amazon.com"
    },
    "storeName": "BestSellerStore",
    "participation": {
      "isParticipating": true,
      "hasSuspendedListings": false
    }
  }
]