My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Télécharger PDF I Want To Be A Successful Entrepreneur. Qualities In The Profile Of An Entrepreneur
  • téléchargement epub What You Wish For - Fable Notch 6
  • TÉLÉCHARGEMENTS Les Renegades Tome 2
  • télécharger pdf Haunting Highways Real-Life Ghost Stories from Truck Drivers
  • PDF Kindle Wellspring Pawn - Humanities Source 1 par Sheley Rayne
  • TÉLÉCHARGER PDF EPUB Le rêve du jaguar
  • PDF Les requins par Pierre-Alexandre Bonin
  • téléchargement pdf Les aveuglés - Le palais des murmures
  • Lire en ligne The Fajar Generation The University Socialist Club and the Politics of Postwar Malaya
  • TÉLÉCHARGER PDF EPUB Skizzen von der Erde - Lyrik und Prosa
  • TÉLÉCHARGEMENTS Connections that Count Mastering Networking for Entrepreneurial Growth
  • Kindle Tus téléchargement
  • PDF Divorce imminent Intégrale par Laurie Eschard
  • Lire en ligne Ophélia et les abysses Tome 2
  • PDF Kindle La légende Alpine par Stéphane Barbé Thomas Riaud
  • TÉLÉCHARGER PDF EPUB Les soeurs DAdrienne
  • PDF Kindle Breaking the Ice par Nina Loren
  • Lire en ligne The Gentleman 3000 - Maxime Jarays Books
  • Lecture en ligne Ebook Après elle
  • PDF Recordações da Casa dos Mortos par Fiodor Dostoïevski
  • télécharger pdf Méthode de français Défi 4 B2 - Livre de lélève
  • télécharger pdf Constelaciones para niños La forma más divertida de aprender sobre las estrellas d
  • télécharger pdf Je trace mes patrons le buste - Construction et transformation
  • TÉLÉCHARGEMENTS Le secret de la falaise
  • télécharger pdf Empowering Leaders - NAVIGATING CULTURE COMMUNICATION AND AI ETHICS IN NEGOTIATIO
  • Lecture en ligne Ebook Tales of Cherithy - Tome 1 - Le voyage de Koru
  • Télécharger PDF Ma réputation
  • TÉLÉCHARGEMENTS Strive - 8 Steps to Find Your Awesome
  • TÉLÉCHARGEMENTS Les choses de la nuit
  • Kindle Un certain sourire téléchargement
  • Pdf ePub COMMENT REUSSIR LE NOUVEAU CONCOURS DE LINSP par Lena Heritage téléchargement ebook
  • Pdf ePub The Deep Blue Tales The Oceanic Collective par J.A. Cato téléchargement ebook
  • PDF Le maître du passé par Joanna Bourne Agnès Girard
  • TÉLÉCHARGEMENTS Skin Deep - Santas Shorts
  • PDF From Friends To Forever - Book 2 2 téléchargement
  • téléchargement epub Bolomey le monde dans lobjectif dun Carougeois
  • TÉLÉCHARGER PDF EPUB La collectionneuse de secrets
  • PDF Cold Christmas Nights - Same Time Next Christmas The Bravos of Valentine Bay Cinderellas Pri
  • PDF Tailor Fit - Futa on Female Erotica 3 par Toi La Boi
  • Pdf ePub The Violet Affect and Other Stories par téléchargement ebook
  • PDF Mon manuel de magnétiseur - Apprenez lart de soigner avec vos mains téléchargement
  • Lecture en ligne Ebook Le Fardeau du Temps - Après Cilmeri 20
  • Télécharger Pdf Reclamata dallo zandiano - Le spose zandiane 6
  • PDF Le design graphique - Savoirs savoir-faire par Elodie Palumbo
  • Télécharger PDF Inconsistencias dispersas
  • téléchargement epub Mon atlas du monde aimanté - Avec 1 poster magnétique 80 aimants et 1 livre A l
  • Télécharger PDF Undoing His Innocent Enemy In Bed With Her Billionaire Bodyguard - Undoing His Inn
  • Télécharger PDF Young Hustlers - Teens Guide to Entrepreneurship
  • Lire en ligne Animaux à laquarelle - 20 projets pour apprendre et progresser
  • Lecture en ligne Ebook Clément chez les calmistes
  • 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-15 23:23:15
Previous
Find pet by ID
Next
Update an existing pet
Built with