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

{
    "ob_id": 12822,
    "uuid": "84245c1881ac4610ac42f3f63c3e3453",
    "title": "ACSOE ACE Hill Cloud Experiment (HILLCLOUD)",
    "abstract": "The Atmosphere Chemistry Studies in the Oceanic Environment (ACSOE) Aerosol Characterisation Experiment (ACE) Hill Cloud Experiment (HILLCLOUD) used a hill cap cloud which forms over a ridge on the NE of the island of Tenerife as a natural flow through reactor. An additional objective of this experiment was to characterise the size distribution, size dependent chemical composition and hygroscopic properties of the marine and modified continental aerosol arriving at the North coast of the island. The trace gas concentrations at the same site were similarly characterised.",
    "keywords": "ACSOE, ACE, Cloud",
    "status": "completed",
    "publicationState": "published",
    "identifier_set": [],
    "observationCollection": [
        "https://api.catalogue.ceda.ac.uk/api/v2/observationcollections/2212/?format=api"
    ],
    "parentProject": "https://api.catalogue.ceda.ac.uk/api/v2/projects/2215/?format=api",
    "subProject": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48987/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/50405/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48986/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/50193/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48988/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/48989/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/50404/?format=api"
    ]
}