My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGER PDF EPUB Blitz Tome 1
  • Kindle Bound by Secrets téléchargement
  • PDF Kindle Vivre avec la Terre - Méthode de la ferme du Bec Hellouin - Manuel des jardiniers-maraî
  • téléchargement pdf Réussis ton Bac de français 1re générale
  • Lire en ligne Instaurer une relation complice avec son cheval
  • Lecture en ligne Ebook New To Me - Firefighters of Jacaranda Bay 3
  • PDF Nate - Terks Guardians 8 par Dale Mayer
  • Télécharger Pdf Money-Wise Practical Steps to Build a Substantial Nest Egg
  • PDF Undoing His Innocent Enemy In Bed With Her Billionaire Bodyguard - Undoing His Innocent Enemy
  • TÉLÉCHARGEMENTS Eureka dans la nuit
  • Pdf ePub La symbolique maçonnique des outils dans lart royal - Scala philosophorum par Robert Ambe
  • téléchargement pdf Pour lIran
  • téléchargement epub A Senhora de Wildfell Hall
  • Télécharger PDF Dingues de trail Tome 2
  • Lire en ligne Empower Your Self-Esteem Nurture Your Self-Worth Build Emotional Resilience and Cul
  • TÉLÉCHARGER PDF EPUB Halte au manager-bashing - Réinventer lexpérience manager
  • PDF Les Malloren Tome 6 téléchargement
  • TÉLÉCHARGER PDF EPUB Il Codice dellOrologiaio
  • Pdf ePub Heartless in Naperville Love Never Dies par téléchargement ebook
  • PDF Ton emprise mon destin téléchargement
  • PDF Momos Medical History Tome 2 par Sanba Naomoto Non Asano Akiko Indei Pierre Fernande
  • Télécharger PDF Érosion sociale
  • PDF François dAssise - Le chevalier sans armure téléchargement
  • télécharger pdf The Dark Deliverance - Immortals of East Greenwich Trilogy 3
  • téléchargement pdf Toutes les personnes
  • télécharger pdf Mères solos - Le combat invisible
  • téléchargement epub Les larmes du yôkaï Tome 1
  • PDF La chambre de Giovanni téléchargement
  • Lecture en ligne Ebook Fruits
  • Pdf ePub La vie meilleure par Etienne Kern téléchargement ebook
  • PDF Kindle Winterzauber - Geschichten für die Weihnachtszeit par
  • Pdf ePub Dinner Party Music par Adam Greenfield téléchargement ebook
  • téléchargement epub Double piège
  • Kindle The Ballad of Never After téléchargement
  • télécharger pdf Cytology and Histology for the Canadian Lab Technician V.1
  • Télécharger Pdf The Success Habit Daily Practices for Personal and Professional Growth
  • Télécharger PDF No Mistake - Onyx Black Ops 2
  • Lecture en ligne Ebook A ta mort ce sera à moi
  • Kindle Cher connard téléchargement
  • TÉLÉCHARGER PDF EPUB Video Games
  • Télécharger PDF Finding Yourself How To Tap Into Your Potential And Live The Life You Were Created F
  • Lecture en ligne Ebook Viviendo en Equilibrio - Welfare 1
  • PDF Cupid Eine außerirdische Science-Fiction-Romanze - Kolonie-Feiertage 4 par Demelza Carlton
  • PDF La désinvolture est une bien belle chose par Philippe Jaenada
  • téléchargement epub Last Customer A Shoe Store Fantasy
  • TÉLÉCHARGER PDF EPUB Le monde modes demploi - Comprendre prévoir agir protéger
  • téléchargement epub Discoveries Way Beyond Your Very Bones
  • TÉLÉCHARGEMENTS Fantastic Four lIntégrale Tome 4
  • télécharger pdf La Belgique des enfants
  • TÉLÉCHARGER PDF EPUB Journal dun noob Intégrale 1
  • 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-10 01:13:50
Previous
Find pet by ID
Next
Update an existing pet
Built with