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

# Get Store Info

Return general information about the current Store associated with the current bearer token.

This is a good request to make to check which store you are currently authenticated against. It helps check that authorization worked correctly.

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "version": "v1.39.0",
    "title": "TcgApi"
  },
  "paths": {
    "/stores/self": {
      "get": {
        "tags": [
          "Stores"
        ],
        "summary": "Get Store Info",
        "description": "Return general information about the current Store associated with the current bearer token.",
        "operationId": "Stores_GetIdentity",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Store.StoreInfo_"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/TcgApiModel.Common.ApiResult_TcgApiModel.Store.StoreInfo_"
                }
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.tcgplayer.com"
    }
  ],
  "components": {
    "schemas": {
      "TcgApiModel.Store.StoreInfo": {
        "type": "object",
        "properties": {
          "storeKey": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "level": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "isCertifiedHobbyShop": {
            "type": "boolean"
          },
          "isDirect": {
            "type": "boolean"
          },
          "isGoldStar": {
            "type": "boolean"
          },
          "completedSalesRank": {
            "type": "string"
          },
          "emailContact": {
            "type": "string"
          },
          "storefrontUrl": {
            "type": "string"
          },
          "isProStore": {
            "type": "boolean"
          },
          "inventoryValueCurrent": {
            "format": "double",
            "type": "number"
          },
          "inventoryValueLimit": {
            "format": "double",
            "type": "number"
          },
          "productCountCurrent": {
            "format": "int32",
            "type": "integer"
          },
          "productCountLimit": {
            "format": "int32",
            "type": "integer"
          },
          "dailyEntryCountCurrent": {
            "format": "int32",
            "type": "integer"
          },
          "dailyEntryCountLimit": {
            "format": "int32",
            "type": "integer"
          },
          "productPriceMax": {
            "format": "double",
            "type": "number"
          }
        }
      },
      "TcgApiModel.Common.ApiResult_TcgApiModel.Store.StoreInfo_": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean"
          },
          "errors": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "results": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TcgApiModel.Store.StoreInfo"
            }
          }
        }
      }
    }
  },
  "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
    }
  }
}
```