Skip to main content
GET
/
datasets
/
european-commission
/
cordis-projects
/
{projectId}
Project members
curl --request GET \
  --url https://api.tic.io/datasets/european-commission/cordis-projects/{projectId} \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.tic.io/datasets/european-commission/cordis-projects/{projectId}"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://api.tic.io/datasets/european-commission/cordis-projects/{projectId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.tic.io/datasets/european-commission/cordis-projects/{projectId}",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "x-api-key: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.tic.io/datasets/european-commission/cordis-projects/{projectId}"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("x-api-key", "<api-key>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.tic.io/datasets/european-commission/cordis-projects/{projectId}")
  .header("x-api-key", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.tic.io/datasets/european-commission/cordis-projects/{projectId}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
[
  {
    "orderInProject": 123,
    "role": "<string>",
    "pic": 123,
    "legalName": "<string>",
    "shortName": "<string>",
    "countryCodeAlpha2": "<string>",
    "city": "<string>",
    "postCode": "<string>",
    "companyId": 123,
    "longitude": 123,
    "latitude": 123,
    "contactForm": "<string>",
    "organizationURL": "<string>",
    "sme": true,
    "active": "<string>",
    "activityType": "<string>",
    "contentUpdate": "2023-11-07T05:31:56Z",
    "ecContribution": 123,
    "endOfParticipation": true,
    "netECContribution": 123,
    "nutsCode": "<string>",
    "rcn": 123,
    "totalCost": 123,
    "lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
  }
]

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer<int32>
required

The project id

Response

200 - application/json

OK

orderInProject
integer<int32> | null
role
string | null
pic
integer<int32> | null
shortName
string | null
countryCodeAlpha2
string | null
city
string | null
postCode
string | null
companyId
integer<int32> | null
longitude
number<double> | null
latitude
number<double> | null
contactForm
string | null
organizationURL
string | null
sme
boolean | null
active
string | null
activityType
string | null
contentUpdate
string<date-time> | null
ecContribution
number<double> | null
endOfParticipation
boolean | null
netECContribution
number<double> | null
nutsCode
string | null
rcn
integer<int32> | null
totalCost
number<double> | null
lastUpdatedAtUtc
string<date-time>