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

# Get article sources

> Returns ordered source citations for a specific news article.



## OpenAPI

````yaml https://api.superwize.ai/api/openapi.json post /news/getArticleSources
openapi: 3.1.1
info:
  title: SuperWize API
  version: 1.1.2
  description: >-
    SuperWize RPC API. Authenticated endpoints support Better Auth session
    cookies, Authorization: Bearer <session_token>, or x-api-key.
servers:
  - url: http://api.superwize.ai/api
security: []
tags:
  - name: System
    description: Service health and internal diagnostics.
  - name: Authentication
    description: Session, email verification, and API token endpoints.
  - name: Audio
    description: Speech-to-text and related audio features.
  - name: Chat
    description: Conversation streaming, history, branching, and feedback.
  - name: Credits
    description: Credit balances, usage history, and reward grants.
  - name: Subscription
    description: Subscription tier and status polling endpoints.
  - name: Mini Apps
    description: Curated mini app catalog endpoints.
  - name: News
    description: Curated news feed, article source, and article feedback endpoints.
  - name: Release Notes
    description: Current app release metadata and features.
  - name: Support
    description: Contact/support request endpoints.
  - name: Images
    description: Image conversion, upload, and retrieval endpoints.
  - name: Files
    description: Generic file upload and retrieval endpoints.
  - name: Notifications
    description: Push token registration and test notifications.
  - name: Group Chat
    description: Group lifecycle, invites, messaging, and realtime events.
  - name: Preferences
    description: User preferences and account-type controls.
  - name: Widgets
    description: Widget thread and interaction endpoints.
  - name: Bookmarks
    description: Bookmark groups and conversation associations.
paths:
  /news/getArticleSources:
    post:
      tags:
        - News
      summary: Get article sources
      description: Returns ordered source citations for a specific news article.
      operationId: news.getArticleSources
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                articleId:
                  type: string
                  minLength: 1
              required:
                - articleId
            example:
              articleId: obj_01JHKZ0PV2WX123456789
      responses:
        '200':
          description: Article sources returned.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    articleId:
                      type: string
                    sourceName:
                      type: string
                    sourceUrl:
                      type: string
                      format: uri
                    sourceDomain:
                      type: string
                    language:
                      enum:
                        - en
                        - ur
                    position:
                      type: integer
                      minimum: 0
                      maximum: 9007199254740991
                    createdAt:
                      type: number
                    updatedAt:
                      type: number
                  required:
                    - id
                    - articleId
                    - sourceName
                    - sourceUrl
                    - sourceDomain
                    - language
                    - position
                    - createdAt
                    - updatedAt
              example:
                - id: obj_01JHKZ0PV2WX123456789
                  articleId: obj_01JHKZ0PV2WX123456789
                  sourceName: Primary Key
                  sourceUrl: https://cdn.superwize.ai/assets/sample.png
                  sourceDomain: dawn.com
                  language: en
                  position: 123
                  createdAt: 1767225600000
                  updatedAt: 1767225600000

````