My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online The U.S. Healthcare Ecosystem Payers Providers Producers Second Edition by Lawton Rob
  • pdf download The New Brazilian Mediascape Television Production in the Digital Streaming Age by Eli
  • PDF EPUB Download Chronicles of an Aristocrat Reborn in Another World Manga Vol. 8 by Yashu Nini
  • Read Pdf Open Minded A Novel by Chloe Seager
  • PDF Kindle Saying I Do to the Scoundrel by Liz Tyner
  • The Marriage Wish Gods Gift by Dee Henderson on Iphone New Format
  • PDF DOWNLOAD Lost Oracle by Fiona Horne Veronica Collins on Iphone
  • Read online Romper el círculo It Ends with Us by Colleen Hoover
  • The Stopover by T L Swan on Audiobook New
  • Download PDF The Dialogues Conversations about the Nature of the Universe by Clifford V. Johnson Fr
  • Reckless by Elsie Silver on Iphone New Format
  • PDF Kindle After-Hours Proposal by Trish Morey
  • PDF Download Are You There God Its Me In Menopause An Unfiltered Honest Guide to Midlife Hormon
  • PDF EPUB Download A Kitchen Witchs Culinary Oracle Deck Gain Daily Insight and Bring Magic to Your M
  • Pdf ePub Programming Rust Fast Safe Systems Development by Jim Blandy Jason Orendorff Leonora F.
  • PDF Download Teach Like a Champion 3.0 63 Techniques that Put Students on the Path to College by D
  • Pdf ePub One Happy Accident by Gary Simonds download ebook
  • pdf download The Villainess Turns the Hourglass Vol. 6 by Antstudio
  • Read online I Hear the Sunspot Four Seasons Volume 2 by Yuki Fumino Stephen Kohler
  • Pdf ePub Big Name Fan by Ruthie Knox Annie Mare download ebook
  • PDF Kindle The Last Guy on Earth Special Edition by Sarina Bowen
  • DOWNLOADS The Cat Who Cracked a Cold Case by L T Shearer
  • PDF EPUB Download Touch Me by Callie Croix Full Book
  • PDF Dont Let the Forest In by CG Drews
  • PDF Kindle Theres No Freaking Way Ill be Your Lover Unless... Manga Vol. 6 by Teren Mikami Musshu
  • download pdf Boyfriends. Volume Three A WEBTOON Unscrolled Graphic Novel by REFRAINBOW
  • Read online Battle Mountain by C. J. Box
  • PDF The Last One Out of Town Turn Out the Lights The Epic 1975 Foxcroft Academy Basketball Season b
  • PDF You Are Fatally Invited A Novel by Ande Pliego
  • PDF DOWNLOAD Best Friends for Never by Teagan Hunter on Iphone
  • Read online His Convenient Royal Bride by Cara Colter
  • pdf download Fearless by Lauren Roberts
  • Harlequin Presents February 2025 - Box Set 2 of 2 by Carol Marinelli Natalie Anderson Annie West
  • Pdf ePub Two Twisted Crowns by Rachel Gillig download ebook
  • PDF Kindle Todas esas cosas que te diré mañana Everything Ill Say to You Tomorrow by Elisabet Ben
  • download pdf Simply the Best A Chicago Stars Novel by Susan Elizabeth Phillips
  • Pdf ePub Septology by Jon Fosse Damion Searls download ebook
  • Online Read Ebook Simply the Best A Chicago Stars Novel by Susan Elizabeth Phillips
  • PDF A CHRISTMAS TRAGEDY by Agatha Christie The Gunston Trust
  • Lore Olympus Volume Two by on Iphone New Format
  • PDF Toiveiden lapset by Danielle Steel Kaisa Luntinen
  • PDF Kindle Deconstructing Leaving Church Finding Faith by Karla Kamstra
  • Read Pdf Star Wars Bestiary Vol. 1 Creatures of the Galaxy by S.T. Bende Iris Compiet
  • DOWNLOAD PDF EPUB When the Earth Was Green Plants Animals and Evolutions Greatest Romance by Ril
  • Pdf ePub Dead By Dusk by Eleanor Hill download ebook
  • Death Valley Summer by Brandon Wallace on Audiobook New
  • pdf download The Vaeltheris Legacy by Bethany Bushhouse
  • DOWNLOADS Amish Reckoning by Jocelyn McClay
  • epub download Anathema Legacy by Nick Roberts
  • PDF Kindle Duty to Protect by Lisa Phillips Carol J. Post
  • 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
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-12 22:33:40
Previous
Find pet by ID
Next
Update an existing pet
Built with