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

# Get Insider Transactions

> **Feature Overview**
[OpenAPI JSON Spec](/docs/output/v1_stocks_insider_transactions_get.json)
Retrieve insider transaction data. Provides comprehensive insider trading information including officer/director status, SEC filings, transaction codes, and ownership changes.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/stocks/insider/transactions
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Welcome to Arrays!


    Arrays is a unified financial data layer for both financial institutions and
    retail users, delivering comprehensive market data across crypto and equity
    markets. Our datasets cover fundamentals, ETFs, options, crypto, and more.


    Visit [arrays.org](https://arrays.org) to request an API key and start your
    free trial. You can explore our full API offerings in the documentation
    below.


    For any questions regarding APIs or pricing, please contact
    support@arrays.org.
  title: Arrays API
  version: '1.0'
servers:
  - url: https://data-tools.prd.arrays.org/api
security: []
paths:
  /v1/stocks/insider/transactions:
    get:
      tags:
        - Stock
      summary: Get Insider Transactions
      description: >-
        **Feature Overview**

        [OpenAPI JSON
        Spec](/docs/output/v1_stocks_insider_transactions_get.json)

        Retrieve insider transaction data. Provides comprehensive insider
        trading information including officer/director status, SEC filings,
        transaction codes, and ownership changes.
      parameters:
        - description: Stock symbol (e.g., AAPL, TSLA)
          in: query
          name: symbol
          schema:
            type: string
        - description: Filter by insider name (case-insensitive partial match)
          in: query
          name: owner_name
          schema:
            type: string
        - description: Filter by SEC Form 4 transaction code
          example: '"P"'
          in: query
          name: transaction_code
          schema:
            type: string
            enum:
              - A
              - C
              - D
              - E
              - F
              - G
              - H
              - I
              - J
              - L
              - M
              - P
              - S
              - U
              - W
              - X
              - Z
        - description: Start time (Unix timestamp in seconds)
          example: 1727740800
          in: query
          name: start_time
          required: true
          schema:
            type: integer
            format: int64
        - description: End time (Unix timestamp in seconds)
          example: 1767225599
          in: query
          name: end_time
          required: true
          schema:
            type: integer
            format: int64
        - description: Date field to filter on
          example: '"TRANSACTION_DATE"'
          in: query
          name: time_type
          required: true
          schema:
            type: string
            enum:
              - TRANSACTION_DATE
              - FILING_DATE
              - OBSERVED_AT
        - description: Maximum number of records (1-5000, default 1000)
          in: query
          name: limit
          schema:
            type: integer
      responses:
        '200':
          description: Successfully retrieved insider transactions
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      data:
                        items:
                          $ref: '#/components/schemas/model.UWInsiderTransactionData'
                        type: array
                    type: object
        '400':
          description: Invalid parameters
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      error:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/model.APIResponse'
                  - properties:
                      error:
                        $ref: '#/components/schemas/model.APIError'
                    type: object
      security:
        - ApiKeyAuth: []
components:
  schemas:
    model.APIResponse:
      properties:
        data: {}
        error:
          $ref: '#/components/schemas/model.APIError'
        metadata: {}
        pagination: {}
        request_id:
          type: string
        success:
          type: boolean
      type: object
    model.UWInsiderTransactionData:
      properties:
        amount:
          type: string
        filing_date:
          type: string
        form_type:
          type: string
        is_10b51:
          type: boolean
        is_director:
          type: boolean
        is_officer:
          type: boolean
        is_sp500:
          type: boolean
        is_ten_percent_owner:
          type: boolean
        observed_at:
          type: integer
        officer_title:
          type: string
        owner_name:
          type: string
        price:
          type: string
        security_ad_code:
          type: string
        security_title:
          type: string
        shares_owned_after:
          type: string
        shares_owned_before:
          type: string
        symbol:
          type: string
        transaction_code:
          type: string
        transaction_date:
          type: string
        transactions:
          type: integer
        tx_id:
          type: string
      type: object
    model.APIError:
      properties:
        code:
          example: RESOURCE_NOT_FOUND
          type: string
        details:
          items:
            $ref: '#/components/schemas/model.APIErrorDetail'
          type: array
        docs_url:
          type: string
        examples:
          items:
            type: string
          type: array
        hint:
          type: string
        message:
          example: The requested resource was not found.
          type: string
        suggestions:
          items:
            type: string
          type: array
      type: object
    model.APIErrorDetail:
      properties:
        field:
          type: string
        got:
          type: string
        reason:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: 'API Key authentication. Example: "your-api-key-here"'
      in: header
      name: X-API-Key
      type: apiKey

````