API endpoint that allows saved sessions to be viewed or edited.

GET /flashcards/?format=api&ordering=-image
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 5,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "name": "Apple",
            "category": "Prepositions",
            "image": "https://experteaseimages.s3.ap-south-1.amazonaws.com/in_out-apple-1000.jpeg"
        },
        {
            "id": 4,
            "name": "Banana",
            "category": "Prepositions",
            "image": "https://experteaseimages.s3.ap-south-1.amazonaws.com/in_out_banana.jpeg"
        },
        {
            "id": 2,
            "name": "Bag",
            "category": "Prepositions",
            "image": "https://experteaseimages.s3.ap-south-1.amazonaws.com/in_out_4_bag.jpeg"
        },
        {
            "id": 5,
            "name": "Rat",
            "category": "Prepositions",
            "image": "https://experteaseimages.s3.ap-south-1.amazonaws.com/in_out_3_rat.jpeg"
        },
        {
            "id": 3,
            "name": "Ball",
            "category": "Prepositions",
            "image": "https://experteaseimages.s3.ap-south-1.amazonaws.com/in_out_1_ball.jpeg"
        }
    ]
}