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=priority
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=priority",
    "results": [
        {
            "id": 86,
            "name": "Inspiration4 SpaceX Internal Mission Patch",
            "priority": 11,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/inspiration425_mission_patch_20210917111229.png",
            "agency": {
                "id": 121,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/121/?format=api",
                "name": "SpaceX",
                "type": "Commercial"
            }
        },
        {
            "id": 199,
            "name": "Soyuz 39 Patch",
            "priority": 11,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/soyuz25203925_mission_patch_20211031042619.png",
            "agency": {
                "id": 66,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/66/?format=api",
                "name": "Soviet Space Program",
                "type": "Government"
            }
        },
        {
            "id": 197,
            "name": "Soyuz 38 Patch",
            "priority": 11,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/soyuz25203825_mission_patch_20211031042619.png",
            "agency": {
                "id": 66,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/66/?format=api",
                "name": "Soviet Space Program",
                "type": "Government"
            }
        },
        {
            "id": 188,
            "name": "Soyuz 31 Patch",
            "priority": 11,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/soyuz25203125_mission_patch_20211031042614.png",
            "agency": {
                "id": 66,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/66/?format=api",
                "name": "Soviet Space Program",
                "type": "Government"
            }
        },
        {
            "id": 201,
            "name": "Soyuz 5 Patch",
            "priority": 11,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/soyuz25205252_mission_patch_20211031042620.png",
            "agency": {
                "id": 66,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/66/?format=api",
                "name": "Soviet Space Program",
                "type": "Government"
            }
        }
    ]
}