API endpoint that allows Mission Patch instances to be viewed.

GET: Return a list of all the existing mission patch instances.

FILTERS: Parameters - 'id', 'ids' (comma-separated), 'name', 'name__contains', 'agency__name', 'agency__name__contains', 'agency__id' Example - /2.2.0/mission_patch/?agency__name=SpaceX

ORDERING: Fields - 'id', 'name', 'agency__name', 'priority' Example - /2.2.0/mission_patch/?ordering=priority

GET /2.2.0/mission_patch/?format=api&offset=1040&ordering=-agency__name
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 1045,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.2.0/mission_patch/?format=api&limit=10&offset=1030&ordering=-agency__name",
    "results": [
        {
            "id": 755,
            "name": "VA259 Patch",
            "priority": 10,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/va259_patch_20221213200110.png",
            "agency": {
                "id": 115,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/115/?format=api",
                "name": "Arianespace",
                "type": "Commercial"
            }
        },
        {
            "id": 82,
            "name": "OneWeb 10 Patch",
            "priority": 10,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/oneweb2520102_mission_patch_20210914151718.png",
            "agency": {
                "id": 115,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/115/?format=api",
                "name": "Arianespace",
                "type": "Commercial"
            }
        },
        {
            "id": 83,
            "name": "OneWeb 10 Mission Patch",
            "priority": 9,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/oneweb2520102_mission_patch_20210914223912.png",
            "agency": {
                "id": 115,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/115/?format=api",
                "name": "Arianespace",
                "type": "Commercial"
            }
        },
        {
            "id": 73,
            "name": "Pléiades Neo",
            "priority": 10,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/pl25c325a9iad_mission_patch_20210813080635.png",
            "agency": {
                "id": 178,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/178/?format=api",
                "name": "Airbus Defence and Space",
                "type": "Multinational"
            }
        },
        {
            "id": 307,
            "name": "STS-105 Patch",
            "priority": 10,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/sts-1052520pat_mission_patch_20211031042918.png",
            "agency": {
                "id": 133,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/133/?format=api",
                "name": "Aerojet",
                "type": "Commercial"
            }
        }
    ]
}