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

# Get Api Transaction Data



## OpenAPI

````yaml /partner-api/openapi.json get /api/Analytics/GetApiTransactionData
openapi: 3.0.1
info:
  title: SeekOut Partner API
  version: '1.0'
  description: >-
    The SeekOut Partner API provides direct, programmatic REST access to
    SeekOut's talent search engine. Use it to build custom integrations,
    dashboards, scheduled jobs, and backend workflows for candidate search,
    profile matching, contact retrieval, and analytics. Authenticate every
    request with your `Api-Key` header, provisioned by your SeekOut
    representative.
servers:
  - url: https://partnerapi.seekout.io
    description: SeekOut Partner API
security:
  - ApiKey: []
paths:
  /api/Analytics/GetApiTransactionData:
    get:
      tags:
        - Analytics
      summary: Get Api Transaction Data
      operationId: getApiTransactionData
      parameters:
        - name: transactionId
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PeopleSearch.Api.ApiTransactionData'
            application/json:
              schema:
                $ref: '#/components/schemas/PeopleSearch.Api.ApiTransactionData'
            text/json:
              schema:
                $ref: '#/components/schemas/PeopleSearch.Api.ApiTransactionData'
components:
  schemas:
    PeopleSearch.Api.ApiTransactionData:
      type: object
      properties:
        request:
          type: string
          nullable: true
        response:
          type: string
          nullable: true
        partner_name:
          type: string
          nullable: true
        id:
          type: string
          nullable: true
        request_date:
          type: string
          format: date-time
        response_date:
          type: string
          format: date-time
          nullable: true
        request_type:
          $ref: '#/components/schemas/PeopleSearch.Api.PartnerApiRequestType'
      additionalProperties: false
    PeopleSearch.Api.PartnerApiRequestType:
      enum:
        - SearchPeople
        - MatchProfile
        - PremiumContactRequest
        - ConversationalSearch
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: Api-Key
      description: >-
        Organization-scoped API key provisioned by SeekOut. Send it in the
        `Api-Key` header on every request.

````