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

# Search projects

> Searches for CORDIS projects



## OpenAPI

````yaml get /datasets/european-commission/cordis-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/cordis-projects:
    get:
      tags:
        - EuropeanCommission
      summary: Search projects
      description: Searches for CORDIS projects
      operationId: ECSearchProjects
      parameters:
        - name: query
          in: query
          description: Acronym or project id, use % for wildcard
          required: true
          schema:
            type: string
        - name: lastItemId
          in: query
          schema:
            type: integer
            format: int32
            default: 0
        - name: pageSize
          in: query
          schema:
            type: integer
            format: int32
            default: 100
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDIS_Project_DtoItemsPagination
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDIS_Project_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_EuropeanCommission_EC_CORDIS_Project_Dto
          nullable: true
      additionalProperties: false
    Ormeo_WebAPI_Models_Datasets_EuropeanCommission_EC_CORDIS_Project_Dto:
      type: object
      properties:
        projectId:
          type: integer
          format: int32
        acronym:
          type: string
          nullable: true
        contentUpdateDate:
          type: string
          format: date-time
          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
        rcn:
          type: integer
          format: int32
          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
        totalCost:
          type: number
          format: double
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````