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

# Get company insider trades



## OpenAPI

````yaml GET /companies/{idOrLookup}/insider-trades
openapi: 3.1.0
info:
  title: Financial Data API
  version: 0.1.0
  description: Raw-first, derived-ready financial data infrastructure API.
servers:
  - url: https://api.financialdatapi.com
security:
  - apiKey: []
  - bearerApiKey: []
paths:
  /companies/{idOrLookup}/insider-trades:
    get:
      summary: Get company insider trades
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 500
            default: 100
            description: Trades returned, after filters.
        - name: start_date
          in: query
          schema:
            type: string
            format: date
            description: Lower bound on the transaction date.
        - name: end_date
          in: query
          schema:
            type: string
            format: date
            description: Upper bound on the transaction date.
        - name: transaction_code
          in: query
          schema:
            type: string
            description: >-
              Single SEC transaction code filter, e.g. P (purchase), S (sale), A
              (grant), M (option exercise).
        - name: include_derivative
          in: query
          schema:
            type: boolean
            default: true
            description: Include Table II derivative-security transactions.
        - name: order
          in: query
          schema:
            type: string
            enum:
              - asc
              - desc
            default: desc
            description: Sort by transaction date.
      responses:
        '200':
          description: >-
            Structured SEC Form 3/4/5 insider transactions — insider identity
            and role, transaction code and label, shares, price, signed USD
            value, post-transaction holdings — with accession number and filing
            URL provenance
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemEnvelope'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    ItemEnvelope:
      type: object
      required:
        - data
        - meta
        - requestId
      properties:
        data:
          type: object
        meta:
          type: object
        requestId:
          type: string
    ErrorEnvelope:
      type: object
      required:
        - error
        - requestId
      properties:
        error:
          type: object
          required:
            - code
            - message
            - request_id
            - requestId
          properties:
            code:
              type: string
            message:
              type: string
            request_id:
              type: string
            requestId:
              type: string
            details: {}
        requestId:
          type: string
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
    Forbidden:
      description: API key lacks required scope
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
    bearerApiKey:
      type: http
      scheme: bearer

````