My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf LEGO Marvel Character Encyclopedia With Exclusive Minifigure by Shari Last
  • PDF EPUB Download Color Theory for Artists by Ian Goldsmith Full Book
  • PDF DOWNLOAD AWS Certified Solutions Architect Study Guide Associate SAA-C03 Exam by David Clinton
  • DOWNLOAD PDF EPUB Bound to the Shadow Prince by Ruby Dixon
  • PDF DOWNLOAD Sword of the Titans by Kashidashiki on Iphone
  • pdf download The Unexpected Duke by Julia Justiss
  • Read Pdf The Librarians of Lisbon A WWII Story of Love and Espionage by Suzanne Nelson
  • Sad Planets by Dominic Pettman Eugene Thacker on Ipad
  • Online Read Ebook Pierre Soulages From Midnight to Twilight by Pierre Soulages Annie Godfrey Larmon
  • My Sweet Orange Tree by Jose Mauro de Vasconcelos on Ipad
  • pdf download Freed Fifty Shades Freed as Told by Christian by E L James
  • PDF Jeramiahs Power by Betsy Rose Wells Felipe Echevarria
  • Read pdf After Annie by Anna Quindlen
  • The Voices of Adriana by Elvira Navarro Christina MacSweeney on Ipad
  • epub download DK Super Readers Pre-Level Marvel Spidey and His Amazing Friends Go Team Spidey by DK
  • PDF Kindle Lonely Planet Pocket Bilbao San Sebastian by Isabel Albiston
  • pdf download Bruce Saves the Planet A Disney Planet Possible Book by Ryan T. Higgins
  • DOWNLOAD PDF EPUB All Fours by Miranda July
  • Download PDF A Last Supper of Queer Apostles Selected Essays by Pedro Lemebel Gwendolyn Harper
  • PDF Download Its Hard for Me to Live with Me A Memoir by Rex Chapman Seth Davis
  • Read online Mothers Day MiracleBlessed Baby by Lois Richer
  • The Red Emperor Xi Jinping and His New China by Michael Sheridan on Ipad
  • Read online The Arrangements by Orly Konig
  • Gotrek Felix The Serpent Queen by Josh Reynolds on Ipad
  • DOWNLOADS CCNP and CCIE Security Core SCOR 350-701 Official Cert Guide Edition 1 by Omar Santos
  • pdf download 2024 Valparaiso Vikings High School Football Memory Book Jobs Not Finished by Valparais
  • PDF EPUB Download The Real Economy History and Theory by Jonathan Levy Full Book
  • Online Read Ebook Feeding Tiny Bellies Over 100 Baby-Led Weaning Toddler and Family Recipes A Cook
  • PDF Download El cuerpo consciente Hacia una salud crónica by Ellen J. Langer Marta Rivilla
  • Download Pdf Exam Ref PL-300 Power BI Data Analyst by Daniil Maslyuk
  • PDF Kindle Passage to Dawn Legacy of the Drow 4 Legend of Drizzt 10 by R. A. Salvatore
  • PDF EPUB Download Dungeons Dragons The Fallbacks Bound for Ruin by Jaleigh Johnson Full Book
  • Read online Illustrators Sketchbooks Inside the Creative Processes of 60 Iconic and Emerging Artists
  • download pdf Playground by Aron Beauregard
  • Read Pdf Bookish Bits Bites Lucky or Unlucky 13 by Morgan Brice Kevin A Davis Stuart Jaffe
  • 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
pet
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
status
string 
required
Status values that need to be considered for filter

Responses

🟢200OK
application/json
Body
array of:
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
id
integer <int64>
optional
Category ID
>= 1
name
string 
optional
Category Name
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
id
integer <int64>
optional
Tag ID
>= 1
name
string 
optional
Tag Name
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
🟠400Invalid status value
Previous
Deletes a pet
Built with