My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger PDF Affiches de sports dhiver
  • télécharger pdf The White Darkness
  • TÉLÉCHARGER PDF EPUB Mes petits jeux faits maison
  • Lecture en ligne Ebook Guide du Routard Colombie 2023 24
  • Pdf ePub Career and Life Skills Unlock Your personal Growth and Transformation par ALBERT MUTURI t
  • Lecture en ligne Ebook The Ovenlight Saga Baking Dough - Part 1 - The Ovenlight Saga 1
  • téléchargement pdf Contos de Shakespeare
  • Kindle La cinquième discipline - Levier des organisations apprenantes téléchargement
  • TÉLÉCHARGER PDF EPUB Horribles monstres - Un voyage au coeur de lhorreur
  • Lecture en ligne Ebook Vipère au poing
  • PDF Kindle Paul Virginie par Bernardin de Saint-Pierre
  • Lecture en ligne Ebook Krennelin Berry
  • Lecture en ligne Ebook How To Actually Get Rich With AI
  • Pdf ePub Its Been A Year par Katie Bingham-Smith téléchargement ebook
  • Télécharger Pdf Le petit foulard de Marguerite D.
  • PDF Isabellas Desires - Dirty Fairy Tales 3 par K.C. Hensley
  • téléchargement pdf Une somme humaine
  • Lire en ligne Sérotonine
  • PDF Ton emprise mon destin par Jeffe Kennedy
  • TÉLÉCHARGER PDF EPUB Mes 250 autocollants super-héros - Anime ton cahier détachable grâce à tes au
  • PDF Kindle Spelunking Underground Tennessee - Caves in The U.S. par Will Power
  • PDF Mon super livre de jeux - Halloween téléchargement
  • Télécharger Pdf Reflection Poetry
  • PDF Detached - The Mystic Chronicles 1 par Brigit Rosé
  • Kindle Clément chez les calmistes téléchargement
  • PDF Fallen Angel par Camille Creati
  • TÉLÉCHARGER PDF EPUB Discoveries Way Beyond Your Very Bones
  • Télécharger Pdf Undoing His Innocent Enemy In Bed With Her Billionaire Bodyguard - Undoing His Inn
  • Télécharger PDF A filha do Marquês - As filhas 1
  • téléchargement pdf La face cachée du Dalaï-Lama
  • téléchargement epub Un hiver à Stockholm
  • télécharger pdf Tsunami
  • TÉLÉCHARGEMENTS 45 secondes déternité - Mes souvenirs de lau-delà
  • télécharger pdf Goddess of Air - Kingdom of Fairytales 48
  • télécharger pdf Huhito Fables Vol.26 - Fables 26
  • 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 00:33:25
Previous
Deletes a pet
Built with