Get a list of Platform objects. Platforms have a 1:1 mapping with Observations.

### Available end points:

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

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `title`
- `uuid`
- `keywords`
- `platformType`

### How to use filters:

- `/platforms/?title__startwith!=Instrument.title: DETAILS NEEDED`
- `/platforms/?uuid=ca06054a34a6f4a72a87e3390a8136492`
- `/platforms.json?instrumentType=radiometer`

GET /api/v2/platforms/?format=api&offset=1300
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 1301,
    "next": null,
    "previous": "https://catalogue.ceda.ac.uk/api/v2/platforms/?format=api&limit=100&offset=1200",
    "results": [
        {
            "ob_id": 45845,
            "uuid": "3b886531cacb473da3ec3e044986dd05",
            "title": "Kilkcaldy meteorological station",
            "abstract": "Kilkcaldy meteorological station was operated from 1819 to 1841",
            "keywords": "historical meteorological station",
            "identifier_set": [],
            "platformType": "land_station",
            "parentPlatform": [],
            "childPlatform": [],
            "responsiblepartyinfo_set": [
                "https://catalogue.ceda.ac.uk/api/v2/rpis/219129/?format=api",
                "https://catalogue.ceda.ac.uk/api/v2/rpis/219130/?format=api"
            ]
        }
    ]
}