Get a list of Instrument objects. Instruments have a 1:1 mapping with Observations.

### Available end points:

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

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `title`
- `uuid`
- `keywords`
- `instrumentType`

### How to use filters:

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

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

{
    "ob_id": 8247,
    "uuid": "9bf3c7a69d84430280bd72c0e63a119c",
    "title": "Landsat MSS (MultiSpectral Scanner)",
    "abstract": "The Multispectral Scanner is one of the Earth observing sensors introduced in the Landsat program. A Multispectral Scanner (MSS) was placed aboard each of the first five Landsat satellites. The MSS' on Landsat 4 and 5 were capable of detecting radiation in 5 bands between 0.5 and 1.1µm as opposed to 4 on Landsat 1, 2 and 3.",
    "keywords": "",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/5308/?format=api"
    ],
    "instrumentType": "radiometer",
    "subInstrument": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33211/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/33210/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/108879/?format=api"
    ]
}