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

{
    "ob_id": 1003,
    "uuid": "fe89d9092055426eb719290ce4063b88",
    "title": "Met Office C-band radar",
    "abstract": "UK C Band radar run by the Met Office and the Environment Agency.",
    "keywords": "",
    "identifier_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/716/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/identifiers/717/?format=api"
    ],
    "instrumentType": "radar",
    "subInstrument": [],
    "responsiblepartyinfo_set": [
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/3215/?format=api",
        "https://api.catalogue.ceda.ac.uk/api/v2/rpis/3214/?format=api"
    ]
}