List All Category Conditions

This endpoint returns all available conditions associated with the specified
category.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Conditions in a category include all of the various conditions that a product can be listed at through TCGplayer. Condition is one of the most important factors for determining product value.

{
    "success": boolean,
    "errors": [],
    "results": [
        {
            "conditionId": integer,
            "name": "string",
            "abbreviation": "string",
            "displayOrder": integer
        }
    ]
}
/catalog/categories/2/conditions

{
    "success": true,
    "errors": [],
    "results": [
        {
            "conditionId": 1,
            "name": "Near Mint",
            "abbreviation": "NM",
            "displayOrder": 1
        },
        {
            "conditionId": 2,
            "name": "Lightly Played",
            "abbreviation": "LP",
            "displayOrder": 2
        },
        {
            "conditionId": 3,
            "name": "Moderately Played",
            "abbreviation": "MP",
            "displayOrder": 3
        },
        {
            "conditionId": 4,
            "name": "Heavily Played",
            "abbreviation": "HP",
            "displayOrder": 4
        },
        {
            "conditionId": 5,
            "name": "Damaged",
            "abbreviation": "DM",
            "displayOrder": 5
        },
        {
            "conditionId": 6,
            "name": "Unopened",
            "abbreviation": "U",
            "displayOrder": 6
        }
    ]
}
/catalog/categories/8/conditions

{
    "success": true,
    "errors": [],
    "results": [
        {
            "conditionId": 1,
            "name": "Near Mint",
            "abbreviation": "NM",
            "displayOrder": 1
        },
        {
            "conditionId": 6,
            "name": "Unopened",
            "abbreviation": "U",
            "displayOrder": 6
        }
    ]
}
Path Params
int32
required

The Id of the category whose conditions should be returned.

Headers
string
enum
Defaults to application/json

Generated from available response content types

Allowed:
Responses

400

CategoryId is less than or equal to 0.

404

Category not found or no conditions found.

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json
text/json