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

# Machine-readable quickstart

> A short markdown quickstart (auth header, base URL, endpoint list, rate limits). No authentication required.



## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/docs
openapi: 3.1.0
info:
  title: SuperX API
  version: 1.0.0
  description: >
    The SuperX public API: your Twitter/X content, analytics, audience and

    scheduling data over REST.


    All endpoints require an API key (`Authorization: Bearer sxk_...`) except

    `GET /v1/docs`. Keys are created in the SuperX app under Account > API / MCP
    / CLI

    and are server-side secrets.


    Timestamps are UTC ISO-8601 in both directions; inputs must carry an
    explicit

    `Z` or numeric offset. Every authenticated response carries

    `X-RateLimit-Limit`, `X-RateLimit-Remaining` and `X-RateLimit-Reset`
    headers.
  contact:
    name: SuperX
    url: https://superx.so
servers:
  - url: https://api.superx.so
security:
  - apiKey: []
tags:
  - name: Identity
  - name: Content
  - name: Analytics
  - name: Inspiration
  - name: Audience
  - name: Contact Lists
  - name: Signals
  - name: Media
  - name: Scheduling
  - name: Tags
  - name: Context
  - name: Queue
  - name: Articles
  - name: Meta
paths:
  /v1/docs:
    get:
      tags:
        - Meta
      summary: Machine-readable quickstart
      description: >-
        A short markdown quickstart (auth header, base URL, endpoint list, rate
        limits). No authentication required.
      operationId: getDocs
      responses:
        '200':
          description: The quickstart document.
          content:
            text/markdown:
              schema:
                type: string
              example: |
                # SuperX API v1 quickstart

                Base URL: `https://api.superx.so/v1`
                ...
      security: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        A SuperX API key ("sxk_..."), created in the SuperX app under Account >
        API / MCP / CLI. Keys are server-side secrets.

````