Stack Exchange · JSON Structure

Stackexchange Api V2 3 Access Token Structure

An OAuth access token, returned by the access-token endpoints.

Type: object Properties: 4
Q And ADeveloper CommunityKnowledge GraphStack OverflowStack ExchangeReputationTagsCommunityMCPAI Grounding

AccessToken is a JSON Structure definition published by Stack Exchange, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

access_token expires_on_date account_id scope

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "name": "AccessToken",
  "description": "An OAuth access token, returned by the access-token endpoints.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/stackexchange/refs/heads/main/json-structure/stackexchange-api-v2-3-access-token-structure.json",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "expires_on_date": {
      "type": "int64"
    },
    "account_id": {
      "type": "int64"
    },
    "scope": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}