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

# Retrieving Access Token Status

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Consumer Authentication",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "https://login.zype.com"
    }
  ],
  "paths": {
    "/oauth/token/info": {
      "get": {
        "summary": "Retrieving Access Token Status",
        "description": "",
        "tags": [
          "Oauth"
        ],
        "operationId": "retrieveAccessTokenStatus",
        "parameters": [
          {
            "name": "access_token",
            "in": "query",
            "required": true,
            "description": "The access token created via Oauth",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "title": "TokenInfoResponse",
                  "type": "object",
                  "properties": {
                    "resource_owner_id": {
                      "type": "string",
                      "description": "ID of the consumer"
                    },
                    "scopes": {
                      "type": "array",
                      "description": "Will be deprecated 06/2023, use `scope` instead."
                    },
                    "scope": {
                      "type": "array"
                    },
                    "expires_in_seconds": {
                      "description": "Will be deprecated 06/2023, use `expires_in`",
                      "type": "integer"
                    },
                    "expires_in": {
                      "type": "integer"
                    },
                    "application": {
                      "type": "object",
                      "properties": {
                        "uid": {
                          "type": "string"
                        }
                      }
                    },
                    "created_at": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "401": {
            "description": "Token Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1oauth~1token/post/responses/400/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  }
}
```