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

# List Articles

> Paginated list of the caller's own articles (drafts by default).



## OpenAPI

````yaml /api-reference/openapi.json post /article/list
openapi: 3.1.0
info:
  title: OmniX API
  version: 1.0.0
  description: >-
    The fastest X (Twitter) API. Read and write tweets, users, lists, media and
    articles with a single API key. Every request runs as a real X account you
    supply via `auth_token`. Flat $0.001 per successful call.
servers:
  - url: https://api.omnixapi.com/api/v1/twitter
security:
  - bearerAuth: []
tags:
  - name: Tweets
    description: Search, read and write tweets.
  - name: Users
    description: Profiles, timelines, networks and profile actions.
  - name: Lists
    description: X List data.
  - name: Media
    description: Upload images, GIFs and video.
  - name: Articles
    description: Long-form X Articles.
  - name: Direct Messages
    description: >-
      Read and send X (XChat) direct messages. Encrypted operations require your
      `encryption_code` (XChat PIN).
  - name: Webhooks
    description: >-
      Real-time event delivery. Register an https URL and OmniX POSTs typed,
      signed events for DMs, mentions, replies, likes and follows.
  - name: Account
    description: >-
      Your OmniX account details, credit balance, usage and payment history.
      Free — no credits deducted, and no X account token required.
paths:
  /article/list:
    post:
      tags:
        - Articles
      summary: List Articles
      description: Paginated list of the caller's own articles (drafts by default).
      operationId: listArticles
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - auth_token
              properties:
                auth_token:
                  $ref: '#/components/schemas/AuthTokenField'
                lifecycle:
                  type: string
                  enum:
                    - Draft
                    - Published
                  default: Draft
                count:
                  type: integer
                  default: 20
                cursor:
                  type: string
                proxy:
                  $ref: '#/components/schemas/ProxyField'
      responses:
        '200':
          description: A page of article cards.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/Envelope'
                  - type: object
                    properties:
                      data:
                        type: object
                        properties:
                          userId:
                            type: string
                          lifecycle:
                            type: string
                          article_count:
                            type: integer
                          has_more:
                            type: boolean
                          next_cursor:
                            type: string
                            nullable: true
                          articles:
                            type: array
                            items:
                              $ref: '#/components/schemas/ArticleCard'
components:
  schemas:
    AuthTokenField:
      type: string
      description: The X account `auth_token` cookie the action runs as.
      example: YOUR_X_AUTH_TOKEN
    ProxyField:
      type: string
      description: >-
        Optional outbound proxy for this call (`http://` or `https://`,
        optionally `user:pass@host:port`). The X request runs through it —
        useful for geo-routing or spreading calls across IPs. SOCKS proxies are
        not supported.
      example: http://user:pass@host:8080
    Envelope:
      type: object
      properties:
        status:
          type: boolean
          example: true
        data:
          type: object
        error:
          type: string
          nullable: true
          example: null
    ArticleCard:
      type: object
      properties:
        article_id:
          type: string
        title:
          type: string
        preview_text:
          type: string
        lifecycle:
          type: string
          nullable: true
        cover_media:
          type: object
          nullable: true
        tweet_id:
          type: string
          nullable: true
        created_at_secs:
          type: integer
          nullable: true
        modified_at_secs:
          type: integer
          nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Your OmniX API key, e.g. `omnix_live_...`. Billed per call.

````