My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Faire chanter la Vierge par Johnny Wooh
  • Télécharger PDF 10 Mindsets to Embrace For Teenage Success Happiness and A Determined Path in Life
  • Pdf ePub Les enfants traumatisés par les conflits de guerre par Zygmunt Ostrowski téléchargement eb
  • Télécharger Pdf Games - Lintégrale
  • Pdf ePub Dancing Down the Aisle - Rockabilly Romance 3 par Renee Conoulty téléchargement ebook
  • Télécharger Pdf La mafia dEtat - Histoire des élites de Mitterand à Macron
  • PDF Kindle Harry Breaks a Jail - Harry the Pirate Captain 2 par Philip L Hutson
  • TÉLÉCHARGEMENTS Blue - Puppyville Pack 1
  • PDF Play it Again téléchargement
  • téléchargement epub Rosie - The Milky Way Hucow Farm 3
  • PDF Méthode de français Défi 4 B2 - Livre de lélève téléchargement
  • PDF Kindle Intimate Surrender par Kitty Jordan
  • TÉLÉCHARGER PDF EPUB Home for the Holidays - Potter Lake 3.5
  • Télécharger PDF Love Puck - Las Vegas Angels Duet Series 6
  • téléchargement pdf Les Renegades Tome 3
  • TÉLÉCHARGEMENTS Overwork No More An Essential Guide to Reclaim Your Time Off Find Your Balance and
  • Lecture en ligne Ebook How to Identify a Friend - The Power of the Mind 1
  • PDF The Wizards Revenge par Mark Maynard
  • téléchargement pdf Le soldat désaccordé
  • téléchargement epub Le Totalitarisme en marche - De la perversion de la loi à lhomo sacer une philo
  • téléchargement pdf Campus drivers Tome 1
  • téléchargement pdf Amor Pasión Y Muerte
  • Télécharger PDF Sara et le secret de la loi de lattraction Tome 3
  • Télécharger PDF Loeuvre du serpent
  • Télécharger PDF Le crochet en 180 points
  • TÉLÉCHARGEMENTS Mit der Gorch Fock übern Teich - Aus Logbüchern der Bordcrew 1962
  • TÉLÉCHARGEMENTS Gods and Monsters Tome 1
  • TÉLÉCHARGEMENTS The Devil - Alice Flowers Tarot 3
  • PDF La saison des apparences - Naissance des corps dété téléchargement
  • Pdf ePub Cherche et trouve Viviane la licorne par Séverine de La Croix Julien Flamand téléchargeme
  • PDF Kindle Black Sabbath Israel a Jewish Supremacist Nation a Terrorist State an Apartheid Regim
  • Lire en ligne Le guide de la musculation au naturel
  • téléchargement pdf Cleaning the Horny HucowInside and Out - The Betty Series 3
  • téléchargement epub WildC.A.T.s - Evolution
  • PDF Kindle Unfriended Retold A Friends-to-Lovers Romance - Love in New Highland 4 par Deana Farrad
  • Pdf ePub The Horus Heresy Collection Tome 1 par Dan Abnett Graham McNeill Ben Counter téléchargem
  • PDF La méthode de lecture 100 syllabique Larousse - Idéal pour apprendre à lire Dès 5 ans téléch
  • PDF Kindle Book 1 The Pleasure Room - Secrets of the Mansion Exploring Desire and Control 1 par
  • Pdf ePub Rich AF - The Money Mindset That Will Change Your Life par téléchargement ebook
  • téléchargement epub Summer with the Single Dad - The Single Dads of San Camanez The Brew Brothers 2
  • TÉLÉCHARGER PDF EPUB Un adolescent amoureux
  • TÉLÉCHARGEMENTS Las de pique
  • Lire en ligne No Mistake - Onyx Black Ops 2
  • PDF Kindle Inconsistencias dispersas par Simone Malacrida
  • Lire en ligne The Journal of Allison Beckett
  • Pdf ePub Eine Braut für den Herzog - Regency BonBons Deutsche Ausgabe 1 par Jennifer Ashley téléch
  • PDF Kindle La Trame. Se soigner par lénergie du monde par Patrick Burensteinas
  • Kindle Apocaline Tome 2 téléchargement
  • Télécharger Pdf The Surrender of Seona MacKai - Seonas Story MacKai Brides Book Three - MacKai Brid
  • Télécharger PDF The Clusion Wars The Apocalyptic Clash Between Liberal Inclusion and Conservative Ex
  • 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-09 21:13:15
Previous
Find pet by ID
Next
Update an existing pet
Built with