My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS Hakumei Mikochi Tiny Little Life in the Woods Vol. 12 by Takuto Kashiki Taylor Engel
  • Read pdf Family on the Range by Jessica Nelson
  • Glorious Exploits A Novel by Ferdia Lennon on Audiobook New
  • PDF Download The Katharina Code by Jïrn Lier Horst
  • Online Read Ebook Crook Manifesto A Novel by Colson Whitehead
  • Online Read Ebook Lady Nightmare by Rachel M. Yoldi
  • PDF DOWNLOAD Little Chunkies Baby Animals With Adorable Animals to Touch and Discover by DK on Iph
  • Pdf ePub Bath Time Fish by Adam Gamble Mark Jasper download ebook
  • PDF Download Someone to Trust and Her Forbidden Amish Love by Patricia Davids Jocelyn McClay
  • Read Pdf Sunrise on the Reaping A Hunger Games Novel by Suzanne Collins
  • PDF DOWNLOAD Healing with Haiku A Poetic Exploration of Self by Anne Helfer on Iphone
  • DOWNLOAD PDF EPUB Smart Girls Guide to Drama Rumors and Secrets Staying True to Yourself in Chang
  • download pdf The Zodiac Almanac An Everything Guide to the 12 Astrological Signs by Various Authors
  • PDF Zero Gravity by Woody Allen Daphne Merkin
  • Download Pdf Well Always Have Summer by Jenny Han
  • Pdf ePub A Surprise Christmas Proposal by Liz Fielding download ebook
  • DOWNLOAD PDF EPUB The Secret of The Fishing Box A reincarnation Mystery Across Lifetimes by Cleuni
  • download pdf Jardín de las delicias El by José Luis de Villar Iglesias
  • DOWNLOADS The Last Colony An Old Mans War Novel by John Scalzi
  • PDF The Observable Universe An Investigation by Heather McCalden
  • Download PDF The Violent Take It by Force by Matthew D. Taylor
  • DOWNLOAD PDF EPUB Vagabondo by Paul Freeman
  • PDF EPUB Download The Nativity Story by Juliet David Jo Parry Full Book
  • Beneath the Trees Where Nobody Sees by Patrick Horvath on Audiobook New
  • PDF Cat Gamer Volume 7 by Wataru Nadatani Zack Davisson Susie Lee
  • PDF EPUB Download An American in Paris A Novel by Margaret Vandenburg Full Book
  • DOWNLOAD PDF EPUB ADHD A Hunter in a Farmers World by Thom Hartmann Michael Popkin
  • PDF DOWNLOAD Learn Unity Programming with C by Jonathan Weinberger on Iphone
  • Read Pdf No Holds Barred by Callie Croix
  • DOWNLOADS La habitación de al lado The Room Next Door by Pedro Almodóvar Sigrid Nunez
  • PDF Kindle The Actor and The Space by Declan Donnellan
  • Download PDF Bad Badger by Maryrose Wood Giulia Ghigini
  • Read pdf The Pool by Hannah Tunnicliffe
  • PDF EPUB Download The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagan
  • Read Pdf The Art of War by Sun Tzu
  • epub download More Tales of Pirx the Pilot by Stanislaw Lem
  • Download PDF Last Laughs by Elliott Erwitt
  • epub download The Conspiracy Tourist by Dom Joly
  • Andromeda A Novel by Therese Bohman Marlaine Delargy on Iphone New Format
  • PDF EPUB Download The Art of Lies of P by NEOWIZ ROUND8 Studio Full Book
  • pdf download Lincolns Last Card The Emancipation Proclamation as a Case of Command by Richard J. Ell
  • Online Read Ebook Wisdom Stories of Tibet Tales of Magic Adventure and Bravery by Laura Burges La
  • epub download Just for the Summer by Abby Jimenez
  • PDF DOWNLOAD Fly Me to the Moon Vol. 27 by Kenjiro Hata on Iphone
  • The Official Wordscapes Puzzle Book Volume 1 by PeopleFun on Iphone New Format
  • PDF Kindle Babel Vol. 3 by Kuji Furumiya Haruyuki Morisawa Amelia Imogen
  • PDF DOWNLOAD Credence by Penelope Douglas on Iphone
  • Read pdf Teach Yourself VISUALLY iPhone 16 by Guy Hart-Davis
  • Text Appeal by Kylie Scott on Iphone New Format
  • Online Read Ebook The Lake of Lost Girls A Novel by Katherine Greene
  • 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-15 22:43:25
Previous
Find pet by ID
Next
Update an existing pet
Built with