My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download Captain America The Shield of Sam Wilson by Sheree Renée Thomas Jesse J. Holland M.
  • PDF EPUB Download Ballparks and Baseball Sticker Logbook Track Your Trips to Every Major Baseball B
  • Read Pdf Bibliotherapy Books to Guide You Through Every Chapter of Life by Molly Masters
  • DOWNLOAD PDF EPUB Cold Nights Warm Hearts by Nora Roberts
  • download pdf 365 Days of Drawing People by Lise Herzog
  • Read online The Spirit of Hope by Byung-Chul Han Daniel Steuer
  • DOWNLOAD PDF EPUB Pornography Men Possessing Women by Andrea Dworkin
  • Theory Practice A Novel by Michelle de Kretser on Ipad
  • Read online Cruel Seduction Dark Olympus 5 by Katee Robert
  • Read Pdf Naruto Sasukes Story-The Uchiha and the Heavenly Stardust The Manga Vol. 1 by Shingo Kim
  • Online Read Ebook My Life on the Mountain by Marion Brand
  • Pdf ePub The Youngest One in the Room by Dayna Adelman download ebook
  • Download PDF General Relativity The Essentials by Carlo Rovelli
  • Download Pdf Wild Berries by Julie Flett Earl N. Cook
  • Download Pdf Weird Walk Wanderings and Wonderings through the British Ritual Year by Weird Walk Ste
  • Pure Excess Capitalism and the Commodity by Todd McGowan on Ipad
  • PDF DOWNLOAD Second Arakan 1943-44 Shattering the Myth of Japanese Invincibility in Burma by Tim M
  • Read pdf Poison in Their Hearts Castles in Their Bones 3 by Laura Sebastian
  • epub download The House at Pooh Corner Classic Gift Edition by A. A. Milne E. H. Shepard
  • DOWNLOAD PDF EPUB Beautiful Graves by L.J. Shen
  • DOWNLOAD PDF EPUB Un animal salvaje A Wild Animal by Joel Dicker
  • DOWNLOADS Air-Borne The Hidden History of the Life We Breathe by Carl Zimmer
  • epub download Entrances and Exits by Michael Richards Jerry Seinfeld
  • The Ultimate Science Cookbook for Kids Over 75 Recipes Science Experiments for Kids A STEM Cookboo
  • DOWNLOADS La Dolce Vita Contemporary Italian Erotica by Women by Maxim Jakubowski
  • PDF DOWNLOAD Be a Revolution How Everyday People Are Fighting Oppression and Changing the World-an
  • Someone Is Watching A Thrilling Suspense Novel by Amanda Stevens on Audiobook New
  • PDF EPUB Download Eat the World A Collection of Poems by Marina Diamandis Full Book
  • epub download Diablo Tales from the Horadric Library A Short Story Collection by Adam Foshko Delila
  • Pdf ePub The Nvidia Way Jensen Huang and the Making of a Tech Giant by Tae Kim download ebook
  • PDF Kindle The Edge of Nowhere by William W Johnstone J A Johnstone
  • Read pdf Catch the Sun by Jennifer Hartmann
  • PDF EPUB Download Influence Is Your Superpower The Science of Winning Hearts Sparking Change and
  • Pdf ePub Sacrifice How the Deadliest Vaccine in History Targeted the Most Vulnerable by James Thorp
  • PDF Download The End of the Moment We Had by Toshiki Okada Samuel Malissa
  • PDF Star Wars The High Republic Escape from Valo by Daniel José Older Alyssa Wong Petur Antonsson
  • 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 23:03:51
Previous
Find pet by ID
Next
Update an existing pet
Built with