My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • téléchargement epub Ultramarins
  • TÉLÉCHARGER PDF EPUB Compass - T02 - Lueurs de lEst
  • télécharger pdf How to Identify a Friend - The Power of the Mind 1
  • TÉLÉCHARGEMENTS Les Femmes de nos vies
  • téléchargement pdf Messalina Tome 2
  • PDF Les moteurs agricoles et industriels de nos anciens - 1860-1960 téléchargement
  • Lecture en ligne Ebook The White Darkness
  • TÉLÉCHARGER PDF EPUB Affiches de sports dhiver
  • PDF Paul Virginie par Bernardin de Saint-Pierre
  • Lire en ligne Fleur de sang
  • télécharger pdf Cómo Hablar de Manera Efectiva
  • téléchargement pdf Leadership Alchemy
  • téléchargement epub Attraction is not a Choice The Boxset
  • PDF Kindle Les fantômes de Gaunt par Dan Abnett
  • PDF Maux damour Tome 3 téléchargement
  • téléchargement epub Origami japonais
  • télécharger pdf La chute de la maison Mélenchon
  • Lecture en ligne Ebook Les pros du fumoir - Viandes poissons légumes fruits
  • PDF On se casse Les meilleurs spots à Prague téléchargement
  • PDF Kindle Life is Chaos and All is Well par
  • TÉLÉCHARGEMENTS Chaos and Gunfire
  • PDF The Baby His Secretary Carries The Italians Pregnant Enemy - The Baby His Secretary Carries B
  • Kindle Et si demain tout sinversait téléchargement
  • Pdf ePub How to Raise Financially Intelligent Kids Staying Debt-Free or Becoming Capitalists - Fina
  • PDF Kindle Skye Doe Tome 3 par Simone L. Pennyworth
  • PDF Kindle October 7 Turning Tides in the Middle East par Austin Baas
  • PDF Pulphouse Fiction Magazine Issue 23 - Pulphouse 23 par Dean Wesley Smith Annie Reed Nina Kir
  • TÉLÉCHARGER PDF EPUB Joe Abercrombie - LIntégrale
  • PDF Kindle Le théâtre iranien en transition - Les oeuvres de Bahram Beyzaie par Mona Emad Gérard L
  • PDF The Bones of the Earth - The Dark Age 1 téléchargement
  • Lire en ligne The Brave Heart Sparrow
  • télécharger pdf Dances and Character Pieces - Piano
  • téléchargement pdf Herausforderung schulische Inklusion - zwischen Anspruch und Realität
  • PDF Tu mas donné de la crasse et jen ai fait de lor téléchargement
  • Lire en ligne G-Men Anthology
  • 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
Modified at 2025-06-07 12:17:40
Previous
Deletes a pet
Built with