My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger Pdf Le trésor de lîle au Crâne
  • Pdf ePub Kassie The Lovely Letters Book 2 Second Edition - The Lovely Letters 2 par téléchargemen
  • Lecture en ligne Ebook Au début cétait juste un bleu
  • TÉLÉCHARGEMENTS Eugénie Grandet
  • PDF La Reine sans royaume téléchargement
  • Lire en ligne Of Shadows and Sails - The Tarakona Chronicles 2
  • Pdf ePub Rencontres au sommet - Quand les hommes de pouvoir se réunissent par téléchargement ebook
  • Lire en ligne House of Boreal - The Haidren Legacy 3
  • Pdf ePub Bad for me - Tome 1 Le premier roman dAnita Rigins par Anita Rigins téléchargement ebook
  • Télécharger PDF Couture rose
  • Télécharger PDF Power - Les 48 lois du pouvoir
  • Télécharger PDF Jörkenheim - 2. Au Nom Du Père
  • Lecture en ligne Ebook Los inútiles cazadores de fantasmas
  • Télécharger PDF The Most Terrible Pogrom in History
  • TÉLÉCHARGEMENTS Installations électriques bâtiments dhabitation neufs
  • Kindle A BloodStained War - Bloodstained Shadows 2 téléchargement
  • Lecture en ligne Ebook The Curse of Argendarria
  • PDF Vienne par Petit Futé
  • Pdf ePub Lécole du bien et du mal Tome 2 par Soman Chainani téléchargement ebook
  • Télécharger PDF Herausforderung schulische Inklusion - zwischen Anspruch und Realität
  • télécharger pdf Healthy Hunger Overcoming Food Addiction - Overcoming Addiction
  • téléchargement epub Wunderland - Où danse un peu du désastre et de la magie du monde
  • téléchargement pdf Queen of Skies - Kingdom of Fairytales 45
  • téléchargement epub No Mistake - Onyx Black Ops 2
  • Télécharger Pdf Traité pratique de morphologie et palpation anatomique
  • téléchargement pdf O Pequeno Herói
  • télécharger pdf Le cours des Glénans
  • téléchargement pdf Le voyage de Christophe Colomb
  • Kindle Le testament du Masque de fer - Belle-Île-en-Mer téléchargement
  • télécharger pdf Joe Abercrombie - LIntégrale
  • Lecture en ligne Ebook Liberté. No. 341 Hiver 2024 - Sexe en novembre. Le numéro qui va rendre vos
  • Pdf ePub Anatole Bernolu a disparu par Pauline Toulet téléchargement ebook
  • téléchargement epub Les choses de la nuit
  • TÉLÉCHARGEMENTS La clinique du coureur - La santé par la course à pied
  • Lecture en ligne Ebook How to Raise Financially Intelligent Kids Staying Debt-Free or Becoming Capit
  • PDF Kindle Indie Author Confidential 15 - Indie Author Confidential 15 par M.L. Ronn
  • téléchargement epub Travailler sur soi ça sapprend - La boîte à outils pour les adultes et les enf
  • téléchargement epub La Maison des égarées
  • PDF Robert boulin - UN GAULLISTE DÉPUTÉ DE LA GIRONDE MAIRE DE LIBOURNE ET MINISTRE téléchargement
  • téléchargement pdf Juanalberto et Halbran
  • PDF Les BRICS - Brésil Russie Inde Chine Afrique du Sud les puissances économiques du XXIe siè
  • Lire en ligne El Caldero Mágico Recetas y Conjuros para el Alma Creativa - El Caldero Mágico Receta
  • TÉLÉCHARGER PDF EPUB Undoing His Innocent Enemy In Bed With Her Billionaire Bodyguard - Undoing
  • Télécharger PDF KAMOURASKA
  • PDF Kindle Ein Pinselstrich zwischen uns - Teil 2 - Impastowirbel par Celeste Draven
  • Pdf ePub Lombre du soir par Laurence Lacroix-Arnebourg téléchargement ebook
  • PDF Mon coeur a déménagé par Michel Bussi
  • téléchargement pdf Os Possessos
  • Télécharger Pdf Why Does Delvin Bark Based on a True Question
  • PDF Kindle Légendes et drames du rock par Axel Brémond
  • 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