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

# Get All Source Urls

> Full list of source URLs cited in AI responses, paginated and sorted by
frequency. Unlike /top-sources this is not capped at 50 entries.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/public/citations/all-sources
openapi: 3.1.0
info:
  title: Hikoo REST API
  description: >-
    Programmatic access to your Hikoo data: citations, prompts, competitors,
    audits, health and more. Authenticate with a personal API key
    (`Authorization: Bearer <key>`) created from the dashboard settings.
  version: 1.0.0
servers:
  - url: https://api.tryhikoo.com
security:
  - apiKey: []
paths:
  /api/v1/public/citations/all-sources:
    get:
      tags:
        - Citations
      summary: Get All Source Urls
      description: |-
        Full list of source URLs cited in AI responses, paginated and sorted by
        frequency. Unlike /top-sources this is not capped at 50 entries.
      operationId: get_all_source_urls_api_v1_public_citations_all_sources_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 25
            title: Page Size
        - name: time_range
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/TimeRange'
              - type: 'null'
            title: Time Range
        - name: platforms[]
          in: query
          required: false
          schema:
            anyOf:
              - type: array
                items:
                  $ref: '#/components/schemas/AiPlatform'
              - type: 'null'
            title: Platforms[]
        - name: localizations[]
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            title: Localizations[]
        - name: topic_ids[]
          in: query
          required: false
          schema:
            anyOf:
              - type: array
                items:
                  type: integer
              - type: 'null'
            title: Topic Ids[]
        - name: source_class
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                pattern: ^(all|mentioned|background)$
              - type: 'null'
            title: Source Class
        - name: website_id
          in: query
          required: true
          schema:
            type: integer
            description: Target website id
            title: Website Id
          description: Target website id
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Bearer <api_key>
            title: Authorization
          description: Bearer <api_key>
        - name: X-MCP-Secret
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Mcp-Secret
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedSourceUrls'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TimeRange:
      type: string
      enum:
        - all_time
        - 1y
        - 1m
        - 1w
        - 1d
      title: TimeRange
    AiPlatform:
      type: string
      enum:
        - ChatGPT
        - Gemini
        - AI Overviews
        - Google AI Mode
        - Perplexity
        - Mistral
        - Claude
        - DeepSeek
        - Grok
        - Copilot
      title: AiPlatform
    PaginatedSourceUrls:
      properties:
        items:
          items:
            $ref: '#/components/schemas/SourceUrlBreakdown'
          type: array
          title: Items
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        total_pages:
          type: integer
          title: Total Pages
      type: object
      required:
        - items
        - total
        - page
        - page_size
        - total_pages
      title: PaginatedSourceUrls
      description: Paginated list of full source URLs sorted by occurrence count.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SourceUrlBreakdown:
      properties:
        url:
          type: string
          title: Url
        citation_count:
          type: integer
          title: Citation Count
        percentage:
          anyOf:
            - type: number
            - type: 'null'
          title: Percentage
        prompts:
          items:
            $ref: '#/components/schemas/SourceUrlPromptInfo'
          type: array
          title: Prompts
        platforms:
          items:
            $ref: '#/components/schemas/SourceUrlPlatformCount'
          type: array
          title: Platforms
      type: object
      required:
        - url
        - citation_count
      title: SourceUrlBreakdown
      description: |-
        A single source URL with the prompts and AI platforms that used it.

        ``percentage`` = citation_count divided by the total source-URL
        occurrences in the same scope (same filters / source_class) across all
        URLs, before pagination.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    SourceUrlPromptInfo:
      properties:
        id:
          type: integer
          title: Id
        content:
          type: string
          title: Content
      type: object
      required:
        - id
        - content
      title: SourceUrlPromptInfo
    SourceUrlPlatformCount:
      properties:
        platform:
          $ref: '#/components/schemas/AiPlatform'
        count:
          type: integer
          title: Count
      type: object
      required:
        - platform
        - count
      title: SourceUrlPlatformCount
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: Personal API key created in the dashboard (Settings > API keys).

````