My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger PDF Affiches de sports dhiver
  • télécharger pdf The White Darkness
  • TÉLÉCHARGER PDF EPUB Mes petits jeux faits maison
  • Lecture en ligne Ebook Guide du Routard Colombie 2023 24
  • Pdf ePub Career and Life Skills Unlock Your personal Growth and Transformation par ALBERT MUTURI t
  • Lecture en ligne Ebook The Ovenlight Saga Baking Dough - Part 1 - The Ovenlight Saga 1
  • téléchargement pdf Contos de Shakespeare
  • Kindle La cinquième discipline - Levier des organisations apprenantes téléchargement
  • TÉLÉCHARGER PDF EPUB Horribles monstres - Un voyage au coeur de lhorreur
  • Lecture en ligne Ebook Vipère au poing
  • PDF Kindle Paul Virginie par Bernardin de Saint-Pierre
  • Lecture en ligne Ebook Krennelin Berry
  • Lecture en ligne Ebook How To Actually Get Rich With AI
  • Pdf ePub Its Been A Year par Katie Bingham-Smith téléchargement ebook
  • Télécharger Pdf Le petit foulard de Marguerite D.
  • PDF Isabellas Desires - Dirty Fairy Tales 3 par K.C. Hensley
  • téléchargement pdf Une somme humaine
  • Lire en ligne Sérotonine
  • PDF Ton emprise mon destin par Jeffe Kennedy
  • TÉLÉCHARGER PDF EPUB Mes 250 autocollants super-héros - Anime ton cahier détachable grâce à tes au
  • PDF Kindle Spelunking Underground Tennessee - Caves in The U.S. par Will Power
  • PDF Mon super livre de jeux - Halloween téléchargement
  • Télécharger Pdf Reflection Poetry
  • PDF Detached - The Mystic Chronicles 1 par Brigit Rosé
  • Kindle Clément chez les calmistes téléchargement
  • PDF Fallen Angel par Camille Creati
  • TÉLÉCHARGER PDF EPUB Discoveries Way Beyond Your Very Bones
  • Télécharger Pdf Undoing His Innocent Enemy In Bed With Her Billionaire Bodyguard - Undoing His Inn
  • Télécharger PDF A filha do Marquês - As filhas 1
  • téléchargement pdf La face cachée du Dalaï-Lama
  • téléchargement epub Un hiver à Stockholm
  • télécharger pdf Tsunami
  • TÉLÉCHARGEMENTS 45 secondes déternité - Mes souvenirs de lau-delà
  • télécharger pdf Goddess of Air - Kingdom of Fairytales 48
  • télécharger pdf Huhito Fables Vol.26 - Fables 26
  • 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-07 00:33:25
Previous
Find pet by ID
Next
Update an existing pet
Built with