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

# Grok pool capacity

> Live Grok pool capacity — size your feed against the daily budget. daily_capacity = total Grok questions/24h (capable accounts × ~20), remaining_now = still available (rolling 24h), used_24h = spent. Full extract = 2 questions, fast = 1.



## OpenAPI

````yaml /openapi-spec/xshot.yaml get /twitter/grok/status
openapi: 3.0.3
info:
  title: Xshot REST API
  version: 1.0.0
  description: >
    Twitter/X data API. Access user profiles, tweets, communities, lists,
    spaces, and trends.


    All endpoints require authentication via `api_key` query parameter,
    `x-api-key` header, or `Authorization: Bearer` header.
  contact:
    name: Xshot
    url: https://api.xshot.fun
servers:
  - url: https://api.xshot.fun
    description: Production
security:
  - ApiKeyQuery: []
  - ApiKeyHeader: []
  - BearerAuth: []
paths:
  /twitter/grok/status:
    get:
      tags:
        - Tweets
      summary: Grok pool capacity
      description: >-
        Live Grok pool capacity — size your feed against the daily budget.
        daily_capacity = total Grok questions/24h (capable accounts × ~20),
        remaining_now = still available (rolling 24h), used_24h = spent. Full
        extract = 2 questions, fast = 1.
      operationId: getGrokStatus
      responses:
        '200':
          description: Pool capacity
          content:
            application/json:
              schema:
                type: object
                properties:
                  capable:
                    type: integer
                  available:
                    type: integer
                  cooling:
                    type: integer
                  untested:
                    type: integer
                  incapable:
                    type: integer
                  capacity:
                    type: object
                    properties:
                      capable:
                        type: integer
                      usable_now:
                        type: integer
                      daily_capacity:
                        type: integer
                      remaining_now:
                        type: integer
                      used_24h:
                        type: integer
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
    BearerAuth:
      type: http
      scheme: bearer

````