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

# Get Event

> Get a single event by ID.



## OpenAPI

````yaml /api-reference/corpus-product-openapi.json get /v1/events/{event_id}
openapi: 3.1.0
info:
  title: Intrace Corpus Product API
  version: 1.0.0
  description: >-
    Professional API for accessing events, actors, locations, and metadata from
    the Intrace corpus database.
servers:
  - url: https://api.corpus.intrace.ai
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/events/{event_id}:
    get:
      tags:
        - Events
      summary: Get Event
      description: Get a single event by ID.
      operationId: get_event_v1_events__event_id__get
      parameters:
        - name: event_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Event Id
        - name: api_key
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Corpus API key
            title: Api Key
          description: Corpus API key
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Corpus API key
            title: X-Api-Key
          description: Corpus API key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EventDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EventDetailResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        eventCategory:
          type: string
          title: Eventcategory
        eventType:
          type: string
          title: Eventtype
        eventSubtype:
          anyOf:
            - type: string
            - type: 'null'
          title: Eventsubtype
        eventDate:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Eventdate
        eventDateEnd:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Eventdateend
        location:
          anyOf:
            - type: string
            - type: 'null'
          title: Location
        locationCountry:
          anyOf:
            - type: string
            - type: 'null'
          title: Locationcountry
        locationCoordinates:
          anyOf:
            - $ref: '#/components/schemas/CoordinatesResponse'
            - type: 'null'
        fatalities:
          anyOf:
            - type: integer
            - type: 'null'
          title: Fatalities
        injuries:
          anyOf:
            - type: integer
            - type: 'null'
          title: Injuries
        abductions:
          anyOf:
            - type: integer
            - type: 'null'
          title: Abductions
        civilianTargeting:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Civiliantargeting
        admin1:
          anyOf:
            - type: string
            - type: 'null'
          title: Admin1
        admin2:
          anyOf:
            - type: string
            - type: 'null'
          title: Admin2
        admin3:
          anyOf:
            - type: string
            - type: 'null'
          title: Admin3
        geoPrecision:
          anyOf:
            - type: integer
            - type: 'null'
          title: Geoprecision
        salienceScore:
          anyOf:
            - type: number
            - type: 'null'
          title: Saliencescore
        salienceRationale:
          anyOf:
            - type: string
            - type: 'null'
          title: Saliencerationale
        articleCount:
          type: integer
          title: Articlecount
          default: 0
        actorCount:
          type: integer
          title: Actorcount
          default: 0
        sourceDomains:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Sourcedomains
        sourceTypes:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Sourcetypes
        createdAt:
          type: string
          format: date-time
          title: Createdat
        updatedAt:
          type: string
          format: date-time
          title: Updatedat
        categorySpecificData:
          anyOf:
            - type: object
            - type: 'null'
          title: Categoryspecificdata
          description: Category-specific structured data for this event
        actorRolesBreakdown:
          anyOf:
            - type: object
            - type: 'null'
          title: Actorrolesbreakdown
          description: Mapping of roles to actor names involved in this event
      type: object
      required:
        - id
        - title
        - eventCategory
        - eventType
        - createdAt
        - updatedAt
      title: EventDetailResponse
      description: Extended event representation with category-specific data.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CoordinatesResponse:
      properties:
        lat:
          anyOf:
            - type: number
            - type: 'null'
          title: Lat
        lng:
          anyOf:
            - type: number
            - type: 'null'
          title: Lng
      type: object
      title: CoordinatesResponse
      description: Geographic coordinates.
    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
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````