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

# Get user data



## OpenAPI

````yaml https://api.thundercompute.com:8443/openapi.json get /user-data
openapi: 3.1.0
info:
  contact:
    email: support@thundercompute.com
    name: Thunder Compute API Support
    url: https://thundercompute.com/support
  description: >-
    Retrieve current GPU availability using mode-less spec keys

    Recommended for new integrations. The /status and /v1/status endpoints
    retain their legacy configuration keys for compatibility.
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  termsOfService: http://swagger.io/terms/
  title: Thunder Compute API
  version: '1.0'
servers:
  - description: Production server
    url: https://api.thundercompute.com:8443/v1
  - description: Production server
    url: https://api.thundercompute.com:8443
security: []
externalDocs:
  description: ''
  url: ''
paths:
  /user-data:
    get:
      tags:
        - Utilities
      summary: Get user data
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/thundertypes.UserDataResponse'
          description: OK
components:
  schemas:
    thundertypes.UserDataResponse:
      properties:
        data: {}
        instance_access:
          $ref: '#/components/schemas/thundertypes.InstanceAccess'
      type: object
    thundertypes.InstanceAccess:
      properties:
        payment_required_gpu_counts:
          items:
            type: integer
          type: array
          uniqueItems: false
        payment_required_gpu_types:
          items:
            type: string
          type: array
          uniqueItems: false
      type: object

````