My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Hawking - Danger Bluff 2 téléchargement
  • Kindle Nuvole Cremisine téléchargement
  • TÉLÉCHARGER PDF EPUB 90 ans Stade Bollaert-Delelis
  • Télécharger PDF Dandadan T02
  • téléchargement epub Before you shed my blood
  • PDF Kindle Light and Sound - The Song of Everywhen 4 par Chess Desalls
  • Télécharger PDF Les califes maudits Tome 2
  • PDF Le marchand déponges par Edmond Baudoin Fred Vargas
  • téléchargement pdf Réseau de séduction et de pouvoir des beautés délite - Réseau de séduction et de
  • Pdf ePub চনদরগরসথ Chondrogrostho par Minhaj Rahman téléchargement ebook
  • PDF Kindle Zeroism par Bryan Johnson
  • PDF Game of Alliances. Tome 1 English téléchargement
  • télécharger pdf Cómo Hablar de Manera Efectiva
  • Télécharger Pdf Slovénie guide Petaouchnok
  • PDF Contes italiens - Edition bilingue français-italien téléchargement
  • Télécharger Pdf Somatic Yoga for Trauma Recovery 52 Illustrated Truma-Informed Yoga Poses Guided Se
  • téléchargement epub Undoing His Innocent Enemy In Bed With Her Billionaire Bodyguard - Undoing His
  • TÉLÉCHARGEMENTS Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôle
  • télécharger pdf Knockemout Tome 3
  • TÉLÉCHARGEMENTS Deja De Ser Flojo
  • TÉLÉCHARGEMENTS Killian Remus Sheriff Series Book 2 - Sheriff Series 2
  • TÉLÉCHARGEMENTS New To Me - Firefighters of Jacaranda Bay 3
  • téléchargement pdf Vivre avec la Terre - Méthode de la ferme du Bec Hellouin - Manuel des jardinier
  • Télécharger PDF The Fear of Failure the Audacity to Dare do it Afraid
  • PDF Journal dun noob Intégrale 1 téléchargement
  • téléchargement pdf La guide de la santé psycho-spirituelle - Exercices et protocoles pour prendre so
  • Lecture en ligne Ebook Muscu actions et vérités - Entrainement nutrition mindset à vous de jouer
  • PDF Les 17 clés du succès par Napoleon Hill Delphine Hurier-Michaud
  • Lire en ligne The Power of Habit Creating Lasting Change in Your Life
  • Télécharger PDF Le premier jour du reste de ma vie
  • téléchargement epub Encyclopédie pratique de la chasse
  • Pdf ePub Skye Doe Tome 3 par Simone L. Pennyworth téléchargement ebook
  • TÉLÉCHARGEMENTS Domming My Boyfriend
  • PDF Salem - Fallen Ravens MC 1 par Crystal Daniels Sandy Alvarez
  • Lire en ligne LIliade
  • PDF Lhumilité - Vives Flammes 333 téléchargement
  • Pdf ePub Cinderellas Billion-Dollar Invitation par Michele Renae téléchargement ebook
  • téléchargement epub Guide pratique des textiles - 3e éd. - Tissés tricotés techniques
  • Kindle Karine Ruby sur les traces dune étoile téléchargement
  • TÉLÉCHARGER PDF EPUB Les loups du millénaire Tome 2
  • Lecture en ligne Ebook Le koala
  • Lire en ligne Blossom Rhymes Flower Poems for Kids
  • Pdf ePub Ohio - La Belle Rivière T01 par Fred Duval Brada téléchargement ebook
  • PDF Adopted love Tome 1 par Véronique Grisseaux Francesca Follini Gaïa Alexia
  • Kindle Nightshade Academy - Belladonna 1 téléchargement
  • PDF Maths Tout-en-un MP MP-MPI MPI - 6e éd. téléchargement
  • PDF Bis du zurückkommst - U.S. Army par Laetitia Deeg
  • PDF Göttliche Intervention Ein heißer Fantasy-Liebesroman téléchargement
  • Lecture en ligne Ebook Peter Pan
  • PDF A Heart to Remember - Hearts Intent 8 par Dawn Brower
  • 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 09:18:01
Previous
Find pet by ID
Next
Update an existing pet
Built with