GET
/
projects
/
{id}
Find project by id
curl --request GET \
  --url https://api.n-3.co.uk/projects/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "environment_id": 123,
  "project_reference": "<string>",
  "project_status": "IN_PROGRESS",
  "address": "<string>",
  "postcode": "<string>",
  "latitude": 123,
  "longitude": 123,
  "description": "<string>",
  "site_area": 123,
  "field_site": "<string>",
  "proposed_procurement_structure": "Main Contractor - Design & Build",
  "proposed_procurement_structure_other_specific": "<string>",
  "contract_form": "<string>",
  "gross_development_value": 123,
  "total_budget": 123,
  "loan_facility_budget": 123,
  "total_gifa": 123,
  "site_max_floors_above_ground": 123,
  "site_max_floors_below_ground": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

Response

200 - application/json

The response is of type object.