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

# Get Citation Details

> Get detailed URLs for a specific cited domain. Use the citedEntityUuid from the Get Citations endpoint to retrieve the individual citation URLs.



## OpenAPI

````yaml get /entities/citations/details
openapi: 3.1.0
info:
  title: Geogen API
  description: >-
    API for accessing LLM visibility data, managing entities, and tracking AI
    mentions.
  version: 1.0.0
servers:
  - url: https://api.geogen.io/v1
    description: Production server
security:
  - bearerAuth: []
paths:
  /entities/citations/details:
    get:
      tags:
        - Entities
      summary: Get Citation Details
      description: >-
        Get detailed URLs for a specific cited domain. Use the citedEntityUuid
        from the Get Citations endpoint to retrieve the individual citation
        URLs.
      operationId: getCitationDetails
      parameters:
        - name: entityId
          in: query
          required: true
          schema:
            type: string
          description: Entity ID
        - name: citedEntityUuid
          in: query
          required: true
          schema:
            type: string
          description: UUID of the cited entity (from Get Citations response)
        - name: period
          in: query
          required: false
          schema:
            type: string
            enum:
              - 7d
              - 14d
              - 30d
          description: Time period
        - name: startDate
          in: query
          required: false
          schema:
            type: string
          description: Start date (ISO format)
        - name: endDate
          in: query
          required: false
          schema:
            type: string
          description: End date (ISO format)
        - name: models
          in: query
          required: false
          schema:
            type: string
          description: Comma-separated model UUIDs
        - name: limit
          in: query
          required: false
          schema:
            type: number
          description: Results per page
        - name: offset
          in: query
          required: false
          schema:
            type: number
          description: Pagination offset
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        url:
                          type: string
                          description: The cited URL
                        citationCount:
                          type: number
                          description: Number of times this URL was cited
                  pagination:
                    $ref: '#/components/schemas/Pagination'
                  period:
                    type: string
                    description: The time period used for the query
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Entity not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Pagination:
      type: object
      properties:
        total:
          type: number
          description: Total count
        limit:
          type: number
          description: Items per page
        offset:
          type: number
          description: Current offset
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key authentication. Format: Bearer wsk_your_api_key'

````