> ## 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 Transactions For Interval



## OpenAPI

````yaml /partner-api/openapi.json get /api/Analytics/GetTransactionsForInterval
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/GetTransactionsForInterval:
    get:
      tags:
        - Analytics
      summary: Get Transactions For Interval
      operationId: getTransactionsForInterval
      parameters:
        - name: startDate
          in: query
          schema:
            type: string
            format: date-time
        - name: endDate
          in: query
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PeopleSearch.Api.ApiTransaction'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PeopleSearch.Api.ApiTransaction'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PeopleSearch.Api.ApiTransaction'
components:
  schemas:
    PeopleSearch.Api.ApiTransaction:
      type: object
      properties:
        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.

````