My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The Artists Guide to Sketching The Classic Book about Making Art on Location by James Gurney Thomas
  • PDF Download Breaking Bao 88 Bakes and Snacks from Asia and Beyond by Clarice Lam Evan Sung
  • Dare I Say It Everything I Wish Id Known About Menopause by Naomi Watts Mary Claire Haver MD on Iph
  • Read pdf The Tower A Novel by Flora Carr
  • Remembering Peasants A Personal History of a Vanished World by Patrick Joyce on Iphone New Format
  • DOWNLOADS Nuestra desquiciada historia de amor by Jandy Nelson
  • Download PDF Thrum by Meg Smitherman
  • Download PDF The Fine Art of Erections by Gruenholtz
  • Duty to Protect by Lisa Phillips Carol J. Post on Iphone New Format
  • PDF EPUB Download The Promise She Made An utterly heartbreaking and gripping World War 2 historica
  • Online Read Ebook Peerless Novel Vol. 2 by Meng Xi Shi
  • epub download A Night in the Lonesome October A Novel by Roger Zelazny
  • Read pdf Journey of Hope by Debbie Kaufman
  • Download PDF Yarichin Bitch Club Vol. 4 by
  • PDF DOWNLOAD The Glassmaker A Novel by Tracy Chevalier on Iphone
  • Read pdf The Official Agatha Christie Puzzle Book Put your detective skills to the ultimate test b
  • PDF Download Binding 13 by Chloe Walsh
  • Read Pdf Power and Terror Conflict Hegemony and the Rule of Force by Noam Chomsky John Junkerma
  • Caging Skies A Novel by Christine Leunens on Iphone New Format
  • Read Pdf The Complete Aaron Sans Erotica Collection Volumes 1-7 66 Stories about MILFs Gangbangs
  • Pharaoh Art and Power in Ancient Egypt by Marie Vandenbeusch on Iphone New Format
  • Milk White Steed by Michael Kennedy on Audiobook New
  • Online Read Ebook The New Romantic Garden by Jo Thompson
  • download pdf The Trap by David Icke
  • Download PDF Stereophonic by David Adjmi Will Butler
  • download pdf Architecture Form Space and Order Edition 4 by Francis D. K. Ching
  • PDF EPUB Download Deeper Mindfulness The New Way to Rediscover Calm in a Chaotic World by Mark Willi
  • PDF EPUB Download Right-Wing Women by Andrea Dworkin Moira Donegan Full Book
  • Cat of Many Tails by Ellery Queen Richard Dannay on Audiobook New
  • Download Pdf You Have Not Yet Heard Your Favourite Song How Streaming Changes Music by Glenn McDonal
  • epub download My Half Latinx Kitchen Half Recipes Half Stories All Latin American by Kiera Wright-
  • Drawing Basics and Beyond Transform Observation into Imagination by Sorie Kim on Audiobook New
  • Pdf ePub Tarnished by Erica Rose Eberhart download ebook
  • PDF DOWNLOAD Michael Vey 8 The Parasite by Richard Paul Evans on Iphone
  • DOWNLOADS Philosophy and Life Exploring the Great Questions of How to Live by A. C. Grayling
  • A Bungalow for Two by Carole Gift Page on Iphone New Format
  • epub download One-Night Crush by Mia Heintzelman
  • 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-11 23:15:10
Previous
Find pet by ID
Next
Update an existing pet
Built with