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=-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=-name",
    "results": [
        {
            "id": 602,
            "name": "Altius Patch",
            "priority": 10,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/altius2520patc_mission_patch_20220108093843.png",
            "agency": {
                "id": 27,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/27/?format=api",
                "name": "European Space Agency",
                "type": "Multinational"
            }
        },
        {
            "id": 845,
            "name": "ALOS-3 Patch",
            "priority": 10,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/alos-32520patc_mission_patch_20230720095110.png",
            "agency": {
                "id": 37,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/37/?format=api",
                "name": "Japan Aerospace Exploration Agency",
                "type": "Government"
            }
        },
        {
            "id": 91,
            "name": "A Data With Destiny Patch",
            "priority": 10,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/a2520data2520_mission_patch_20211011175826.png",
            "agency": {
                "id": 147,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/147/?format=api",
                "name": "Rocket Lab",
                "type": "Commercial"
            }
        },
        {
            "id": 891,
            "name": "Acadia-2 | We will never desert you",
            "priority": 9,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/acadia-225202_mission_patch_20230915062621.png",
            "agency": {
                "id": 1059,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/1059/?format=api",
                "name": "Capella Space",
                "type": "Private"
            }
        },
        {
            "id": 591,
            "name": "Above The Clouds Patch",
            "priority": 10,
            "image_url": "https://thespacedevs-prod.nyc3.digitaloceanspaces.com/media/mission_patch_images/above2520the2_mission_patch_20211109141957.png",
            "agency": {
                "id": 199,
                "url": "https://ll.thespacedevs.com/2.2.0/agencies/199/?format=api",
                "name": "Virgin Orbit",
                "type": "Commercial"
            }
        }
    ]
}