.pdf
  1. Sample APIs
.pdf
  • PDF [Download] The Manor of Dreams by Christina Li
  • PDF [Download] Shield of Sparrows by Devney Perry
  • PDF [Download] Dying to Meet You by Sarina Bowen
  • PDF [Download] Hidden Nature by Nora Roberts
  • PDF [Download] Aftertaste by Daria Lavelle
  • PDF [Download] Can't Get Enough by Kennedy Ryan
  • PDF [Download] My Name Is Emilia del Valle by Isabel Allende
  • PDF [Download] Silver Elite by Dani Francis
  • PDF [Download] The Retirement Plan by Sue Hincenbergs
  • PDF [Download] The Kiss of Deception (The Remnant Chronicles, #1) by Mary E. Pearson
  • PDF [Download] Whispers of Dead Girls by Marlee Bush
  • PDF [Download] Blue Sisters by Coco Mellors
  • PDF [Download] The Martha's Vineyard Beach and Book Club by Martha Hall Kelly
  • PDF [Download] Maine Characters by Hannah Orenstein
  • PDF [Download] Fever Beach by Carl Hiaasen
  • PDF [Download] The Last Ferry Out by Andrea Bartz
  • PDF [Download] And They Were Roommates by Page Powars
  • PDF [Download] Up in Smoke by Nick Brooks
  • PDF [Download] The Incandescent by Emily Tesh
  • PDF [Download] No One Was Supposed to Die at This Wedding (The Vacation Mysteries, #2) by Catherine Mack
  • PDF [Download] Problematic Summer Romance (Not in Love, #2) by Ali Hazelwood
  • PDF [Download] Friends with Benefits by Marisa Kanter
  • PDF [Download] Beautiful Venom (Vipers, #1) by Rina Kent
  • PDF [Download] Behooved by M. Stevenson
  • PDF [Download] Beach House Rules by Kristy Woodson Harvey
  • Start your Apidog journey
  • Sample APIs
    • Find pet by ID
      GET
    • Add a new pet to the store
      POST
    • Update an existing pet
      PUT
    • Deletes a pet
      DELETE
    • Finds Pets by status
      GET
  1. Sample APIs

Finds Pets by status

GET
/pet/findByStatus
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/findByStatus?status'
Response Response Example
200 - Success example
{
    "code": 0,
    "data": [
        {
            "name": "Hello Kitty",
            "photoUrls": [
                "http://dummyimage.com/400x400"
            ],
            "id": 3,
            "category": {
                "id": 71,
                "name": "Cat"
            },
            "tags": [
                {
                    "id": 22,
                    "name": "Cat"
                }
            ],
            "status": "sold"
        },
        {
            "name": "White Dog",
            "photoUrls": [
                "http://dummyimage.com/400x400"
            ],
            "id": 3,
            "category": {
                "id": 71,
                "name": "Dog"
            },
            "tags": [
                {
                    "id": 22,
                    "name": "Dog"
                }
            ],
            "status": "sold"
        }
    ]
}

Request

Query Params

Responses

🟢200OK
application/json
Body

🟠400Invalid status value
Modified at 2025-05-07 19:02:45
Previous
Deletes a pet
Built with