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

# List Conditions

This endpoint returns an array contain all of the normalized conditions
supported by TCGplayer, e.g. Near Mint, Lightly Played.

[block:code]
{
  "codes": [
    {
      "code": "{\n    \"success\": true,\n    \"errors\": [\n    \"string\"\n    ],\n    \"results\": [\n        {\n            \"conditionId\": 0,\n            \"name\": \"string\",\n            \"abbreviation\": \"string\",\n            \"displayOrder\": 0\n        }\n    ]\n}",
      "language": "text",
      "name": "Response Template"
    },
    {
      "code": "/catalog/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": "text",
      "name": "Example Template"
    }
  ]
}
[/block]

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/catalog/conditions": {
      "get": {
        "tags": [
          "Catalog"
        ],
        "summary": "List Conditions",
        "description": "This endpoint returns an array contain all of the normalized conditions\r\nsupported by TCGplayer, e.g. Near Mint, Lightly Played.",
        "operationId": "Catalog_GetConditions",
        "responses": {
          "200": {
            "description": "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_"
                }
              }
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```