> ## 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.

# Participant projects

> Get the projects that the participant is involved in



## OpenAPI

````yaml get /datasets/european-commission/participant-register/{pic}/projects
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/european-commission/participant-register/{pic}/projects:
    get:
      tags:
        - EuropeanCommission
      summary: Participant projects
      description: Get the projects that the participant is involved in
      operationId: ECParticipantProjects
      parameters:
        - name: pic
          in: path
          description: The participant id
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_ParticipantProject_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_ParticipantProject_Dto:
      type: object
      properties:
        projectId:
          type: integer
          format: int32
        acronym:
          type: string
          nullable: true
        ecMaxContribution:
          type: number
          format: double
          nullable: true
        ecSignatureDate:
          type: string
          format: date-time
          nullable: true
        endDate:
          type: string
          format: date-time
          nullable: true
        frameworkProgramme:
          type: string
          nullable: true
        fundingScheme:
          type: string
          nullable: true
        grantDOI:
          type: string
          nullable: true
        legalBasis:
          type: string
          nullable: true
        masterCall:
          type: string
          nullable: true
        nature:
          type: string
          nullable: true
        objective:
          type: string
          nullable: true
        startDate:
          type: string
          format: date-time
          nullable: true
        status:
          type: string
          nullable: true
        subCall:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        topics:
          type: string
          nullable: true
        projectTotalCost:
          type: number
          format: double
          nullable: true
        orderInProject:
          type: integer
          format: int32
          nullable: true
        role:
          type: string
          nullable: true
        ecContribution:
          type: number
          format: double
          nullable: true
        endOfParticipation:
          type: boolean
          nullable: true
        netECContribution:
          type: number
          format: double
          nullable: true
        nutsCode:
          type: string
          nullable: true
        rcn:
          type: integer
          format: int32
          nullable: true
        participantTotalCost:
          type: number
          format: double
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````