My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Sexuality and Prison - Emotional Despair and Restrained Desires par Arnaud Gaillard Alan Cook
  • télécharger pdf Mieux manger toute lannée
  • Télécharger PDF Whesra
  • télécharger pdf Somatic Yoga for Trauma Recovery 52 Illustrated Truma-Informed Yoga Poses Guided S
  • Pdf ePub My Moms Best Friend A Collection of Four Older Woman Younger Man Shorts par Ambyr Leigh té
  • PDF Utiliser le livre dans la médiation scientifique - Guide pratique à lusage des professionnels t
  • Kindle Les Couronnes de Nyaxia Tome 2 téléchargement
  • PDF Kindle Conan o Bárbaro Terceira Parte - Conan o Bárbaro 3 par Erika Sanders
  • téléchargement pdf Les califes maudits Tome 2
  • TÉLÉCHARGER PDF EPUB Un monde presque parfait
  • télécharger pdf Eléments de géologie - 16e édition du Pomerol - Cours et site compagnon
  • PDF Influenced By Nitwits Maximize Your Impact By Mastering the Art of Interacting with Different P
  • téléchargement pdf La machine à gagner - Révélations sur le RN en marche vers lElysée
  • TÉLÉCHARGER PDF EPUB Proprietari di vecchio stampo
  • PDF Kindle La couleur des choses par Martin Panchaud
  • Pdf ePub Le Royaume par Emmanuel Carrère téléchargement ebook
  • Pdf ePub La phytembryothérapie - Lembryon de la gemmothérapie par Franck Ledoux Gérard Gueniot té
  • téléchargement pdf Whesra
  • téléchargement epub The Sisterwitches Book 10 - The Sisterwitches 10
  • PDF Kindle El Messi que no Conoces El Hombre Detrás de la Magia par GORDON MILLS
  • Kindle Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôle détermi
  • Lire en ligne Discoveries Way Beyond Your Very Bones
  • téléchargement epub How to Identify a Friend - The Power of the Mind 1
  • Lecture en ligne Ebook Grand Manuel de phytothérapie
  • télécharger pdf Spirited Away - Souls Redeemed 1
  • Lire en ligne Lassassin royal deuxième époque Tome 2
  • téléchargement epub Social Media Management
  • télécharger pdf Snow in Love
  • PDF Kindle Shame Point Zero par PHOENIX JAMES
  • Pdf ePub Before Tome 1 par Anna Todd téléchargement ebook
  • Télécharger PDF Châteaux du monde - Sur les pas des grands personnages de lhistoire
  • TÉLÉCHARGEMENTS Sweet Second Chances - Texas Redemption 2
  • Télécharger PDF No Mistake - Onyx Black Ops 2
  • Télécharger Pdf Knowledge Management
  • Kindle Dibbouks 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

Add a new pet to the store

POST
/pet
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/pet' \
--data-urlencode 'name=Hello Kitty' \
--data-urlencode 'status=sold'
Response Response 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"
    }
}

Request

Body Params application/x-www-form-urlencoded
name
string 
required
Pet Name
Example:
Hello Kitty
status
string 
required
Pet Sales Status
Example:
sold

Responses

🟢201OK
application/json
Body
code
integer 
required
>= 0<= 0
data
object (Pet) 
required
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
Modified at 2025-06-15 08:42:31
Previous
Find pet by ID
Next
Update an existing pet
Built with