List All Category Conditions

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

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
        }
    ]
}
Language
Click Try It! to start a request and see the response here!