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/24718/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 24718,
    "uuid": "dd2b03d085c5494a8cbfc6b4b99ca702",
    "title": "Methane Observations and Yearly Assessments (MOYA)",
    "abstract": "MOYA was a NERC funded research programme which began in May 2016 and will run for four years. Sixteen research partners make up the MOYA consortium.\r\n\r\nThe central objective of the MOYA project is to move towards closing the global methane budget through undertaking new observations and further analysis of existing data.",
    "keywords": "MOYA, FAAM, Atmospheric, gases",
    "status": "ongoing",
    "publicationState": "published",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/9303/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/10581/?format=api"
    ],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/24762/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/43166/?format=api"
    ],
    "parentProject": null,
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101793/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101792/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101791/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101790/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/101218/?format=api"
    ]
}