> ## 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 Actor

> Get a single actor by ID.



## OpenAPI

````yaml /api-reference/corpus-product-openapi.json get /v1/actors/{actor_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/actors/{actor_id}:
    get:
      tags:
        - Actors
      summary: Get Actor
      description: Get a single actor by ID.
      operationId: get_actor_v1_actors__actor_id__get
      parameters:
        - name: actor_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Actor 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/ActorDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ActorDetailResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        canonicalName:
          type: string
          title: Canonicalname
        aliases:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Aliases
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        articleCount:
          type: integer
          title: Articlecount
          default: 0
        eventCount:
          type: integer
          title: Eventcount
          default: 0
        sourceDomains:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Sourcedomains
        firstMentionDate:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Firstmentiondate
        lastMentionDate:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Lastmentiondate
        createdAt:
          type: string
          format: date-time
          title: Createdat
        updatedAt:
          type: string
          format: date-time
          title: Updatedat
        eventTypesBreakdown:
          anyOf:
            - type: object
            - type: 'null'
          title: Eventtypesbreakdown
        rolesBreakdown:
          anyOf:
            - type: object
            - type: 'null'
          title: Rolesbreakdown
      type: object
      required:
        - id
        - canonicalName
        - createdAt
        - updatedAt
      title: ActorDetailResponse
      description: Extended actor representation with analysis data.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````