Get a list of Project objects. Projects have a 1:1 mapping with Observations.

### Available end points:

- `/projects/` - Will list all Projects in the database
- `/projects.json` - Will return all Projects in json format
- `/projects/<object_id>/` - Returns Projects object with that id

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `uuid`
- `status`
- `title`
- `keywords`

### How to use filters:

- `/projects/?uuid=ab4ca8d019d148f78afba1cd20872bdd`

- `/projects/?title__icontains!=Project details`

- `/projects.json?status=ongoing`

GET /api/v2/projects/474/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 474,
    "uuid": "8cc08263bbbc12e098c3294df8b1bcf0",
    "title": "Joint Airborne IASI Validation Experiment (JAIVEX)",
    "abstract": "IASI, the Infrared Atmospheric Sounding Interferometer, was launched on METOP, a European meteorological polar-orbiting satellite, in October 2006. (Delayed from April 2006). Funded by EUMETSAT, the Joint Airborne IASI Validation Experiment (JAIVEX) used the FAAM BAe146 aircraft in validation studies of IASI radiative transfer and some level 2 products.",
    "keywords": " JAIVEX, FAAM, Meteorology",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/354/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/355/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/9075/?format=api"
    ],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/471/?format=api"
    ],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/1330/?format=api"
    ]
}