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

# Insider trading

> Get a list of all insider trading events, note that transactions details can be found in a separate endpoint or you can use the extended insider-trading endpoint to get a summary.



## OpenAPI

````yaml get /datasets/se/finansinspektionen/insider-trading
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /datasets/se/finansinspektionen/insider-trading:
    get:
      tags:
        - Finansinspektionen
      summary: Insider trading
      description: >-
        Get a list of all insider trading events, note that transactions details
        can be found in a separate endpoint or you can use the extended
        insider-trading endpoint to get a summary.
      operationId: FIInsiderTrading
      parameters:
        - name: lastItemId
          in: query
          description: Take records after the id
          schema:
            type: integer
            format: int32
            default: 0
        - name: pageSize
          in: query
          description: Page size
          schema:
            type: integer
            format: int32
            default: 100
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTrading_DtoItemsPagination
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTrading_DtoItemsPagination:
      type: object
      properties:
        pageSize:
          type: integer
          format: int32
        lastItemId:
          type: integer
          format: int64
        totalItems:
          type: integer
          format: int32
        items:
          type: array
          items:
            $ref: >-
              #/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTrading_Dto
          nullable: true
      additionalProperties: false
    Ormeo_WebAPI_Models_Datasets_Sweden_Finansinspektionen_FI_InsiderTrading_Dto:
      type: object
      properties:
        fI_InsynshandelRapportId:
          type: integer
          format: int32
        reportId:
          type: integer
          format: int32
        arendeNummer:
          type: string
          nullable: true
        arendeRevision:
          type: integer
          format: int32
        arendeStatus:
          type: string
          nullable: true
        publiceringsDatum:
          type: string
          format: date-time
          nullable: true
        namnPaAnmalningsskyldig:
          type: string
          nullable: true
        emittentNamn:
          type: string
          nullable: true
        emittentLEIKod:
          type: string
          nullable: true
        personILedandeStallning:
          type: string
          nullable: true
        befattning:
          type: string
          nullable: true
        narstaende:
          type: boolean
          nullable: true
        nyRapporting:
          type: boolean
          nullable: true
        korrigering:
          type: boolean
          nullable: true
        beskrivningAvKorrigering:
          type: string
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
        foundAtUtc:
          type: string
          format: date-time
        transaktionerFoundAtUtc:
          type: string
          format: date-time
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````