My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Download I Love You So Much Its Killing Us Both A Novel by Mariah Stovall
  • PDF EPUB Download Jack Carr Boxed Set The Terminal List True Believer and Savage Son by Jack Car
  • pdf download The Dead We Honor by William W. Johnstone J. A. Johnstone
  • DOWNLOADS On the Calculation of Volume Book I by Solvej Balle Barbara J. Haveland
  • PDF EPUB Download Arum and King Six Decades of Boxing Gold by Marty Corwin Full Book
  • Pdf ePub Salt Hank A Five Napkin Situation A Cookbook by Henry Laporte download ebook
  • A Father in the Making by Marta Perry Deb Kastner on Audiobook New
  • PDF Normal Women Making history for 900 years by Philippa Gregory
  • DOWNLOADS Redemption Ranch by Leann Harris
  • Read online The Perfect Sacrifice by Abbi Gore Spivey
  • epub download The Lost Passenger A Novel by Frances Quinn
  • Read online Quicksilver by Callie Hart
  • Online Read Ebook Age of Revolutions Progress and Backlash from 1600 to the Present by Fareed Zakari
  • PDF DOWNLOAD Modernist Pizza by Nathan Myhrvold Francisco Migoya on Iphone
  • Online Read Ebook Hiding Him by Adam Hattan
  • Past Present Future by Rachel Lynn Solomon on Iphone New Format
  • Read pdf Song So Wild and Blue A Life with the Music of Joni Mitchell by Paul Lisicky
  • DOWNLOADS QA by Adrian Tomine
  • Read pdf Spirited Away Film Comic All-in-One Edition by Hayao Miyazaki
  • DOWNLOAD PDF EPUB Last Patient of the Night An AJ Docker Thriller by Gary Gerlacher
  • PDF EPUB Download The Daughter of Danray A Flowers of Prophecy Novel by Natalia Hernandez Full Boo
  • Read online I Hate Fairyland Book Three by Skottie Young Brett Bean
  • Resurrection Walk by Michael Connelly on Ipad
  • PDF Download Otherworldly by F.T. Lukens
  • download pdf The Vexations of a Shut-In Vampire Princess Vol. 8 light novel by Kotei Kobayashi ri
  • Please Go Home Miss Akutsu Vol. 7 by Taichi Nagaoka on Audiobook New
  • epub download The Villainesss Guide to Not Falling in Love 03 Manga by Touya Yoimachi REN SAKUMA
  • DOWNLOAD PDF EPUB The End of the Moment We Had by Toshiki Okada Samuel Malissa
  • Read Pdf Stereophonic by David Adjmi Will Butler
  • Online Read Ebook The Rule Book A Novel by Sarah Adams
  • The Amish Midwifes Courtship by Cheryl Williford on Audiobook New
  • Wayfinder The Art of Gretel Lusky by Gretel Lusky 3dtotal Publishing on Ipad
  • The Disabled Tyrants Beloved Pet Fish Canji Baojun De Zhangxin Yu Chong Novel Vol. 1 by Xue Shan Fei
  • Letters to You Words of support and inspiration for difficult times by Jazz Thornton on Iphone New F
  • Online Read Ebook From Boss to Bridegroom and Family of Her Dreams by Karen Kirst Keli Gwyn
  • PDF EPUB Download The Amish Widows Secret and Hidden in Plain View by Cheryl Williford Diane Burk
  • Say Its Forever by A.L. Jackson on Iphone New Format
  • PDF EPUB Download A Girls Guide To Car Repair by Marie Hathaway Full Book
  • Download PDF A Day at the Post Office by Theonesse Cheon
  • PDF Download The Villainess and the Demon Knight Light Novel Vol. 2 by Nekota Asahiko
  • PDF Download Dream State A Novel by Eric Puchner
  • Cyberpunk 2077 The Complete Official Guide by Piggyback on Iphone New Format
  • 3 Shades of Blue Miles Davis John Coltrane Bill Evans and the Lost Empire of Cool by James Kaplan
  • download pdf Alice in Borderland Vol. 1 by Haro Aso
  • Download PDF John Kenn Mortensens Nightmare Factory by John Kenn Mortensen
  • DOWNLOAD PDF EPUB Beetlejuice Tarot Deck Guide by Casey Gilly Abigail Larson
  • Read online The Housemate by Sarah Bailey
  • Pdf ePub Borderlands Debt or Alive by Anthony Burch download ebook
  • DOWNLOADS The Lumberjacks Bride by Jean Kincaid
  • PDF Download Failure Frame I Became the Strongest and Annihilated Everything With Low-Level Spells
  • 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-08 22:37:10
Previous
Find pet by ID
Next
Update an existing pet
Built with