My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • télécharger pdf Tous nos lendemains
  • PDF Kindle From Jerk to Perk - The Me to We Reverse Harem Romances 3 par Mika Lane
  • PDF Attachants adorables... mais parfois insupportables - Le guide pour comprendre et résoudre le
  • téléchargement epub Isabellas Desires - Dirty Fairy Tales 3
  • Kindle The Jungle Book téléchargement
  • PDF Iñupiat Nunaat Collection of Inuit Treaties - Grand Collection of INUIT Treaties 2 téléchargem
  • PDF La confrérie du sang Tome 2 téléchargement
  • PDF Kindle Le club des six et lAbécédaire par Geneviève Bobior-Wonner
  • Télécharger PDF Mystères à Dread Hollow Désir de justice Lîle du danger
  • téléchargement epub La Guardiana del Tiempo Novela Romántica Picante
  • Lire en ligne Bound By Her Baby Revelation One Forbidden Night In Paradise - Bound by Her Baby Re
  • PDF Good Love - The Ballinger Sisters 3 par Niobia Bryant
  • Kindle La chanteuse de Nan Clarks Lane téléchargement
  • Télécharger Pdf Manuel de construction en bambou - Récolte séchage techniques dassemblage
  • Télécharger PDF Rubata dallo zandiano - Le spose zandiane 7
  • Pdf ePub Strive - 8 Steps to Find Your Awesome par Venus Williams téléchargement ebook
  • téléchargement pdf Le djihad de la vache - Pastoralisme et formation de lEtat au Mali
  • PDF La pouponnière dHimmler téléchargement
  • télécharger pdf Eduquer sans punition - La sanction éducative en pratique
  • PDF Verity par Colleen Hoover Pauline Vidal
  • Télécharger Pdf Le royaume des mensonges Tome 1
  • TÉLÉCHARGEMENTS The Guardians Embrace - Bloodmates 2
  • PDF Ascension Of The Tarot Magician par
  • PDF My BBC Stories A Garden Delight téléchargement
  • téléchargement epub Magie financière magie dabondance
  • Télécharger Pdf Baby Mama
  • Télécharger Pdf Guide du Routard Marrakech 2025 26
  • téléchargement epub Ein Pinselstrich zwischen uns - Teil 2 - Impastowirbel
  • Télécharger PDF The Rigged Race of Life - The Mammon Series 2
  • Kindle La forêt de Troncais en bourbonnais suivi de Légendes de la forêt téléchargement
  • Pdf ePub Comment les grands projets se réalisent - Les éléments inattendus qui jouent un rôle déter
  • TÉLÉCHARGER PDF EPUB Origin A Prequel to Beacon - The Hero of Heartland - The Hero of Heartland 0
  • Lecture en ligne Ebook Sense Irritability - Austen in Austin 1
  • Lire en ligne Les vies sauvées dAlexander Vielski
  • téléchargement epub Un amour pour Noël
  • TÉLÉCHARGEMENTS Whispers of the Mansoon
  • PDF Doing What Matters - The Power of Purposeful Productivity téléchargement
  • PDF Archie a du flair téléchargement
  • PDF Penser comme un millionnaire - Changer ses habitudes pour réussir et être heureux par Dean Gra
  • Lire en ligne Feel-Good Productivity - How to Do More of What Matters to You
  • Pdf ePub La jeune fille aux silences par Lyliane Mosca téléchargement ebook
  • télécharger pdf Alice and Meg - Girls Trip - Fallen Lords M.C. 13
  • TÉLÉCHARGEMENTS De lautre côté du miroir - Itinéraires insolites de flibustiers de la finance c. 186
  • PDF Kindle Book 1 The Pleasure Room - Secrets of the Mansion Exploring Desire and Control 1 par
  • PDF Kindle Cursed Inheritance par KAROL MOORE
  • Lire en ligne Une étrange défaite - Sur le consentement à lécrasement de Gaza
  • téléchargement epub Le roi de la guerre et du sang - ADRIAN x ISOLDE TOME 1
  • Pdf ePub Tokyo Vice par Jake Adelstein téléchargement ebook
  • PDF Amor Pasión Y Muerte téléchargement
  • PDF La Passe-miroir Tome 2 téléchargement
  • 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 00:17:30
Previous
Find pet by ID
Next
Update an existing pet
Built with