My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Aspekte der christlichen Esoterik - Deutsche Ausgabe Band 10 par René Guénon Ingo Steinke
  • télécharger pdf Hanna The Job Quitter
  • télécharger pdf Je fais la paix avec mon passé - Mon auto-thérapie par le pardon
  • Télécharger Pdf Alexandre Milliardère le dernier homme
  • Pdf ePub Le chemin à lenvers par Jean-Jacques Michelet téléchargement ebook
  • télécharger pdf Seuls Tome 14
  • téléchargement pdf La Petite Bonne
  • téléchargement pdf Ignite - The Band 2
  • Lire en ligne Le Courage des innocents
  • Lire en ligne David Attenborough Lines to Live By - Embrace the wonder of your world
  • TÉLÉCHARGER PDF EPUB Dictionnaire de la culture juridique
  • PDF Réussir mon année avec Shayvise téléchargement
  • Pdf ePub Domhan Thios Tome 4 par S. J. Brennan téléchargement ebook
  • Lire en ligne LEcrit dhistoire des concours EPS - LEcrit 1 guide méthodologique et thématique CAPE
  • Pdf ePub Note dAmore - Note dAmore 4 par Shaw Hart téléchargement ebook
  • Lecture en ligne Ebook La face cachée de Margo
  • télécharger pdf A deux on est moins forts
  • Kindle Animal Farm téléchargement
  • téléchargement pdf Les talibans face à lopium
  • PDF Kindle Initiation au dessin de bâtiment - Avec 23 exercices dapplication corrigés par Gérard C
  • Lire en ligne Kétamine - C13H16ClNO
  • PDF Kindle La vérité sur ce qui nous motive par Daniel Pink
  • Kindle Le grand livre du Pilates - 124 exercices en pas à pas pour une pratique régulière et progre
  • PDF Kindle Les Malloren Tome 6 par Jo Beverley Catherine Algarra
  • télécharger pdf Éclats de ténèbres - Risa Jones T6
  • téléchargement epub How to Celebrate a Debt-Free Christmas Jingle All the Way to a Debt-Free Christ
  • Lecture en ligne Ebook How to Raise Financially Intelligent Kids Staying Debt-Free or Becoming Capit
  • TÉLÉCHARGER PDF EPUB Le jour où... Tome 1
  • téléchargement pdf Funeste Etincelle - Tome 1 LOrdre des Sicares
  • télécharger pdf Fantastic Four lIntégrale Tome 4
  • Kindle Le Serpent vert téléchargement
  • TÉLÉCHARGER PDF EPUB Dancing Down the Aisle - Rockabilly Romance 3
  • PDF Kindle Solo Leveling Tome 15 par Dubu h-goon Kisoryong Chugong
  • PDF Kindle La vie des dinosaures par Aurélie Desfour Clémence Dupont
  • Kindle Broken - Card Holders 4 téléchargement
  • Kindle Les animaux ont-ils une culture téléchargement
  • Kindle Pimp Without Pimping Watered Down Pimp Principles That The Average Man Can Use In Dating Re
  • Télécharger Pdf The Arcane Academy
  • Pdf ePub Le tarot pas à pas - Histoire iconographie interprétation lecture par Marianne Costa t
  • Pdf ePub Câlins assassins par Delphine Paquereau Stéphanie Dauver téléchargement ebook
  • télécharger pdf Ravished by the Djinn - Sweet Desires 9
  • TÉLÉCHARGEMENTS Mes super desserts de fête
  • Télécharger Pdf Mortelle Adèle Tome 5
  • télécharger pdf Doing What Matters - The Power of Purposeful Productivity
  • Lecture en ligne Ebook Against All Odds Passion and Perseverance
  • Pdf ePub Whispers of Shadows - Whispers of Love 1 par Kirsten Osbourne téléchargement ebook
  • TÉLÉCHARGER PDF EPUB 10 Book Ultimate Cuckold Box Set - Mona Rivers Box Sets 1
  • Télécharger PDF Los Caminos de Oshosi El Arquero Divino del Bosque
  • Télécharger Pdf The Kingdom of Hatch
  • TÉLÉCHARGEMENTS Die falsche Energiewende - Die fatalen Fehler der deutschen Energiepolitik
  • 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