My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger PDF Le gars qui allait quelque part
  • téléchargement epub POV Matrix 3000 Points of View on One Page
  • PDF The Ballad of Falling Rock par
  • PDF Premier amour téléchargement
  • PDF Kindle Daisy Jones and The Six par Taylor Jenkins Reid
  • Télécharger PDF Cowboy Devils Embrace - Motley Crewd Shifters 1
  • téléchargement epub Le Journal du capitaine Wentworth
  • Télécharger PDF Somatic Yoga for Trauma Recovery 52 Illustrated Truma-Informed Yoga Poses Guided Se
  • Lecture en ligne Ebook Les favorites de Charles VII
  • Télécharger PDF Toxic Shock and Other Family Gatherings
  • PDF Kindle Of Shadows and Sails - The Tarakona Chronicles 2 par
  • Pdf ePub Danger Street par Tom King Jorge Fornés Dave Stewart Jérémy Manesse téléchargement eboo
  • téléchargement epub Le peuple de lair Tome 1
  • TÉLÉCHARGEMENTS Guerres et Dragons T02 - LEscadrille Lafayette
  • téléchargement epub The Boat House Café - First Light 1
  • Télécharger PDF Désolation
  • téléchargement pdf 5 Tips for Effective Risk Storytelling
  • télécharger pdf Quand tes tombé
  • PDF Kindle The Dragons Keeper par Moira Carn
  • télécharger pdf The Four Arts series
  • téléchargement pdf Gina Gadis Agresif
  • TÉLÉCHARGER PDF EPUB The Allotment
  • Kindle The Ripple Effect Unlocking the Power of Confidence - Unleashing Confidence Mastery 5 téléc
  • Kindle James et la grosse pêche téléchargement
  • Télécharger Pdf Disney Babies
  • Télécharger PDF La réunification des deux Corées
  • TÉLÉCHARGER PDF EPUB Dune main déliée - Pratique dune nouvelle équitation à la française contribu
  • Lire en ligne Sangs Eternels Forever Lintégrale 3 tomes - Saga bit lit Coffret 2 Univers Sangs Eter
  • téléchargement epub Lécologisation du travail social - Les établissements sociaux à lépreuve du chan
  • Lire en ligne Forstyr Forstoppelsen - Spring Lægen over bog nr 4
  • PDF The Real Nobel Peace Prize A Squandered Opportunity to Abolish War téléchargement
  • téléchargement pdf Le cercle des 17 Tome 2
  • téléchargement epub Assoiffés Tome 5
  • télécharger pdf Le Yoga des émotions - 5 séances complètes pour aider les petits à vivre avec toute
  • Kindle Le jour où... Tome 1 téléchargement
  • 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-12 03:14:40
Previous
Deletes a pet
Built with