My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • téléchargement epub The Family Connection Understanding Dynamics and Strengthening Ties
  • Pdf ePub Leadership Challenge - Tome 1 Les leaders du futur par téléchargement ebook
  • télécharger pdf Notre plage nocturne
  • Télécharger PDF Das passive Online Kurs Business - Finanzielle Freiheit mit eigenen Online Kursen au
  • télécharger pdf Young Hustlers - Teens Guide to Entrepreneurship
  • Lecture en ligne Ebook The Thriving Entrepreneurs Playbook 2024 Blueprint for Growth Impact and Su
  • PDF Mask of the Fae - Shadow Court 5 par K J Baker
  • TÉLÉCHARGEMENTS The Zone A Short Story
  • télécharger pdf Witch Interrupted
  • PDF Kindle Réseau de séduction et de pouvoir des beautés délite - Réseau de séduction et de pouvoir
  • Kindle Aya de Yopougon Tome 8 téléchargement
  • Télécharger Pdf Leonardo Da Vinci 1452-1519 - The Complete Paintings
  • téléchargement epub Arresting the Hockey Player - Ice Dragons Hockey Romance 3
  • télécharger pdf Le mammouth et la fourmilière - Quel devenir pour lécole publique et ses professeur
  • TÉLÉCHARGEMENTS Heir of Fugitives - Kingdom of Fairytales 38
  • TÉLÉCHARGEMENTS Méditer avec la musique classique - Une sophrologue et un musicologue vous invitent
  • PDF 1258 The Siege of Baghdad - Epic Battles of History téléchargement
  • téléchargement epub Baby Needs a New Dress - Baby Needs a... 2
  • Lire en ligne Connaissance du Soi
  • Kindle La boîte à outils de la conduite du changement et de la transformation téléchargement
  • PDF Kindle What the River Knows par Isabel Ibañez
  • Pdf ePub Detached - The Mystic Chronicles 1 par Brigit Rosé téléchargement ebook
  • Télécharger PDF Rosie - The Milky Way Hucow Farm 3
  • Télécharger PDF Lété où... Tome 1
  • PDF Kindle The Mountain Mans Last Stand par John J. Law
  • télécharger pdf The Playful Path how Imagination and Childlike Wonder Shape our Best Selves
  • Kindle Emet téléchargement
  • Kindle Pour combien on plonge téléchargement
  • Pdf ePub Je fais la paix avec mon passé - Mon auto-thérapie par le pardon par Emeric Lebreton téléc
  • télécharger pdf Mythologie du .12
  • téléchargement pdf Forever Boy - The Forever Saga 1
  • Télécharger PDF Histoire de lart
  • PDF Kindle La vie devant nous par Eva Kavian
  • Lecture en ligne Ebook His Curse - Bound Beyond Blood 4
  • Télécharger PDF Introduction générale au droit
  • TÉLÉCHARGEMENTS Jubal Troop
  • PDF Black Widow Lintégrale par Stan Lee Gary Friedrich Don Heck Christian Grasse
  • Télécharger PDF The Rockstar - Silver Spoon MC 5
  • PDF Numagician Đánh Thức Phù Thủy Trí Nhớ Trong Bạn - Numagician 1 téléchargement
  • Télécharger PDF Emo Feels
  • Lecture en ligne Ebook Rencontres au sommet - Quand les hommes de pouvoir se réunissent
  • Lire en ligne Un monde presque parfait
  • TÉLÉCHARGER PDF EPUB Bienvenue à bord - Le guide sophrologique du Passager - Le guide sophrologiqu
  • Lecture en ligne Ebook Dream Walker - Royal Council 2
  • Pdf ePub Le vieil homme et le chat par Nils Uddenberg Ane GUSTAVSSON Carine Bruy téléchargement e
  • PDF Kindle LOdyssée dHakim Tome 1 par Fabien Toulmé
  • téléchargement pdf Shades of Eternity Tome 1
  • Kindle The Intruder téléchargement
  • Lecture en ligne Ebook La Chambre dIsis Tome 1
  • télécharger pdf 100 Bonheur - En 10 minutes dautocoaching par jour
  • 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-06 21:58:20
Previous
Find pet by ID
Next
Update an existing pet
Built with