---
title: "Get Product Details"
method: GET
path: "/catalog/products/{productIds}"
tags: ["Catalog"]
---

# Get Product Details

`GET /catalog/products/{productIds}`

This endpoint returns an array of products whose Ids were specified in the productIds
parameter.  Products that could be found are returned in the results array in the
response.  Products that could not be found are indicated in the errors array.

## Path parameters

- `productIds` string, required

## Query parameters

- `getExtendedFields` boolean
- `includeSkus` boolean

## Response `200`

All products found and returned.

- TcgApiModelCommonApiResultTcgApiModelCatalogCatalogProduct
  - `success` boolean
  - `errors` string[]
  - `results` TcgApiModelCatalogCatalogProduct[]
    - `productId` integer
    - `name` string
    - `cleanName` string
    - `imageUrl` string
    - `categoryId` integer
    - `groupId` integer
    - `url` string
    - `modifiedOn` string, date-time
    - `skus` TcgApiModelCatalogSku[]
      - `skuId` integer
      - `productId` integer
      - `languageId` integer
      - `printingId` integer
      - `conditionId` integer
    - `imageCount` integer
    - `presaleInfo` TcgApiModelCatalogPresaleInfo
      - `isPresale` boolean
      - `releasedOn` string, date-time
      - `note` string
    - `extendedData` TcgApiModelCatalogExtendedDataInfo[]
      - `name` string
      - `displayName` string
      - `value` string

## Other responses

- `207` — Some products found. Those that were found are returned. Those that were not are indicated by an error message.
- `404` — No products found.

---

[API](https://skmtc.dev/tcgplayer/apis/tcgapi.md) · [All operations](https://skmtc.dev/tcgplayer/apis/tcgapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tcgplayer/tcgapi/revisions/dc32a30fcb68/schema)
