Fetch the complete documentation index at: https://docs.tcgplayer.com/llms.txt. Use this file to discover all available pages before exploring further.

# 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.

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"success\": boolean,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"conditionId\": integer,\n            \"name\": \"string\",\n            \"abbreviation\": \"string\",\n            \"displayOrder\": integer\n        }\n    ]\n}",
      "language": "json",
      "name": "Response Template"
    },
    {
      "code": "/catalog/categories/2/conditions\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"conditionId\": 1,\n            \"name\": \"Near Mint\",\n            \"abbreviation\": \"NM\",\n            \"displayOrder\": 1\n        },\n        {\n            \"conditionId\": 2,\n            \"name\": \"Lightly Played\",\n            \"abbreviation\": \"LP\",\n            \"displayOrder\": 2\n        },\n        {\n            \"conditionId\": 3,\n            \"name\": \"Moderately Played\",\n            \"abbreviation\": \"MP\",\n            \"displayOrder\": 3\n        },\n        {\n            \"conditionId\": 4,\n            \"name\": \"Heavily Played\",\n            \"abbreviation\": \"HP\",\n            \"displayOrder\": 4\n        },\n        {\n            \"conditionId\": 5,\n            \"name\": \"Damaged\",\n            \"abbreviation\": \"DM\",\n            \"displayOrder\": 5\n        },\n        {\n            \"conditionId\": 6,\n            \"name\": \"Unopened\",\n            \"abbreviation\": \"U\",\n            \"displayOrder\": 6\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #1"
    },
    {
      "code": "/catalog/categories/8/conditions\n\n{\n    \"success\": true,\n    \"errors\": [],\n    \"results\": [\n        {\n            \"conditionId\": 1,\n            \"name\": \"Near Mint\",\n            \"abbreviation\": \"NM\",\n            \"displayOrder\": 1\n        },\n        {\n            \"conditionId\": 6,\n            \"name\": \"Unopened\",\n            \"abbreviation\": \"U\",\n            \"displayOrder\": 6\n        }\n    ]\n}",
      "language": "json",
      "name": "Example Response #2"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/catalog/categories/{categoryId}/conditions": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "List All Category Conditions",
        "description": "This endpoint returns all available conditions associated with the specified\r\ncategory.",
        "operationId": "Catalog_GetCategoryConditions",
        "parameters": [
          {
            "name": "categoryId",
            "in": "path",
            "description": "The Id of the category whose conditions should be returned.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Category found and conditions returned.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Condition_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Condition_"
                }
              }
            }
          },
          "400": {
            "description": "CategoryId is less than or equal to 0."
          },
          "404": {
            "description": "Category not found or no conditions found."
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Catalog.Condition": {
        "type": "object",
        "properties": {
          "conditionId": {
            "format": "int32",
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "abbreviation": {
            "type": "string"
          },
          "displayOrder": {
            "format": "int32",
            "type": "integer"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Catalog.Condition_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Catalog.Condition"
            }
          }
        }
      }
    }
  },
  "x-readme": {
    "explorer-enabled": true,
    "proxy-enabled": true
  },
  "_id": {
    "buffer": {
      "0": 94,
      "1": 217,
      "2": 152,
      "3": 86,
      "4": 78,
      "5": 118,
      "6": 200,
      "7": 0,
      "8": 17,
      "9": 105,
      "10": 157,
      "11": 192
    }
  }
}
```