My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Kindle LAtelier des Sorciers Tome 2 téléchargement
  • TÉLÉCHARGEMENTS Lamour comme cadeau de Noël
  • PDF Kindle Lord Difficult - Maitlands Rogues 3 par Eileen Putman
  • téléchargement epub Borderline Tome 1
  • TÉLÉCHARGER PDF EPUB Embrace the Middle
  • PDF The Emotionally Intelligent Woman A 31-Day Journey through Lifes Twists and Turns téléchargemen
  • téléchargement epub Cured - Two imaginary boys
  • téléchargement epub Match You - The Virgin Files 2
  • Lecture en ligne Ebook Snow in Love
  • téléchargement epub Les Os Emeraude Tome 1
  • Télécharger Pdf Schrift-Art - Kurzgeschichten
  • TÉLÉCHARGEMENTS Banana Man Peeling and Revealing - Life in the Tropics 3
  • TÉLÉCHARGEMENTS Les superpouvoirs de la respiration
  • PDF Kindle Le petit chat et moi par Pauline Le Gall
  • Lire en ligne Contes et nouvelles
  • PDF Les Enchantés - Chronique dun majordome téléchargement
  • Kindle Dès que sa bouche fut pleine téléchargement
  • Lecture en ligne Ebook The Thriving Entrepreneurs Playbook 2024 Blueprint for Growth Impact and Su
  • téléchargement epub Nutzen wir die freie Meinungsäußerung um Bibliotheken zu loben
  • Kindle Valentina téléchargement
  • TÉLÉCHARGEMENTS Bob Marley
  • TÉLÉCHARGER PDF EPUB Sagenhaftes Aschersleben - die 100 schönsten Geschichten der ältesten Stadt S
  • Lecture en ligne Ebook La cité dIsis - Histoire vraie des Arabes
  • PDF Kindle Star.X - Heal my Seoul - Roman par Britta Wolters
  • téléchargement pdf Ryan - Outdoor Alphas 7
  • PDF The Enchanted Christmas A Childrens Story Book téléchargement
  • télécharger pdf Wollodrïn - Intégrale T06 à T10
  • PDF La Bible en bande dessinée - Le vrai texte par Toni Matas Picanyol
  • Télécharger PDF Games - Lintégrale
  • PDF Kindle Huhito Fables Vol.4 - Fables 4 par
  • PDF Pulphouse Fiction Magazine Issue 23 - Pulphouse 23 téléchargement
  • télécharger pdf Une brève libération
  • PDF Göttliche Intervention Ein heißer Fantasy-Liebesroman par
  • téléchargement pdf Procrastination Breaking the Habit - Mindscapes Navigating the Psyche 1
  • Télécharger PDF Cowboy Devils Embrace - Motley Crewd Shifters 1
  • téléchargement pdf Breaking the Ice
  • PDF The Traveler - Love Hurts par John J. Law
  • Kindle Témoin à charge téléchargement
  • PDF Le kit de lapprenti mangaka - Tout pour créer ses premiers personnages mangas - Avec 10 feuille
  • PDF Kindle Shopify Mastery The Ultimate Guide to E-commerce Success par
  • Télécharger PDF Riven Calyx - An Escavian Chronicle 1
  • TÉLÉCHARGER PDF EPUB Réussir son mémoire en 6 étapes - Licence Master
  • Lire en ligne The Real Nobel Peace Prize A Squandered Opportunity to Abolish War
  • téléchargement epub Map of an Old Heart - Uncollected Anthology Mystical Maps
  • Lecture en ligne Ebook How To Get Off The Hamster Wheel
  • Lecture en ligne Ebook Property of the North Pole
  • PDF Kindle La LCA en anglais facile aux EDN - Fiches théoriques et pratiques par Hervé Devilliers
  • Télécharger Pdf Harry Breaks a Jail - Harry the Pirate Captain 2
  • Télécharger Pdf The Missing Sword
  • Télécharger Pdf Animal Sanctuary in the Wild West a Mail Order Bride romance
  • 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 02:13:35
Previous
Find pet by ID
Next
Update an existing pet
Built with