My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB Je my mets dans 5 minutes...
  • Lecture en ligne Ebook Lanti-lune de miel
  • Télécharger PDF Tamara Drewe
  • TÉLÉCHARGER PDF EPUB Breakfast in Bed - Sophisticated Women 2
  • télécharger pdf Valentina
  • téléchargement epub Les bases de la production végétale - Tome 3 La plante et son amélioration
  • PDF Un mariage noir téléchargement
  • télécharger pdf Garfield poids lourd Tome 25
  • PDF La Maternelle téléchargement
  • Lecture en ligne Ebook Star.X - Heal my Seoul - Roman
  • télécharger pdf The Male Lead Is Mine Vol. 3 - The Male Lead Is Mine 3
  • TÉLÉCHARGEMENTS De la discorde à lentente Camille Barrère et lItalie 1897-1924
  • PDF Kindle Le jugement de leau par Juan Francisco Ferrándiz Marie Vila Casas
  • Kindle Çhibone téléchargement
  • Lire en ligne 10 Mindsets to Embrace For Teenage Success Happiness and A Determined Path in Life
  • PDF Kindle Ladmiration par Florent Marchet
  • TÉLÉCHARGEMENTS Sams Wiggly Tooth
  • PDF Kindle Mes 250 autocollants super-héros - Anime ton cahier détachable grâce à tes autocollants
  • PDF Kindle Surtout ne meurs jamais par Pascal Tissier
  • TÉLÉCHARGEMENTS Compendium de philosophie - Avec Thomas dAquin
  • PDF Kindle ابنة آدم par
  • Kindle Le but - Un processus de progrès permanent téléchargement
  • PDF Kindle Vijandige Getuigen par Emma J.S Scott
  • PDF Connellys Flame - Megalodon Team 3 téléchargement
  • télécharger pdf A History of Dearborn County Indiana - Indiana County Travel and History Series 1
  • Lire en ligne Le cercle blanc Tome 1
  • Lire en ligne Cherry Locked - The Dark Desire 1
  • Pdf ePub Lalimentation intuitive - Le grand livre par Alicia Sicardi Vincent Florent téléchargemen
  • Télécharger PDF Silly Short Stories to Make You Smile
  • téléchargement epub The Paris MBA
  • Lecture en ligne Ebook Borders and Border Spaces in the EU Volume 1 - European Border Management fro
  • Pdf ePub Unter Feuer Band 4 - Unter Feuer 4 par Christina Ross téléchargement ebook
  • Télécharger PDF Magnolia Parks T3 The Long Way Home - Magnolia Parks 3
  • TÉLÉCHARGER PDF EPUB Zone base vie
  • TÉLÉCHARGEMENTS 10 Trucos de la Gente de Éxito - Revolución Digital 0
  • Lire en ligne İtaatkar Şef ve diğer hikayeler - Hakimiyet ve erotik boyun eğme 7
  • TÉLÉCHARGER PDF EPUB Les éveilleurs Tome 1
  • 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-08 01:42:30
Previous
Deletes a pet
Built with