My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Three Kinds of Lucky by Kim Harrison
  • Download PDF The Last Guy on Earth Special Edition by Sarina Bowen
  • DOWNLOAD PDF EPUB Drawing and Illustrating Architecture A Step-by-Step Guide to the Art of Drawing
  • We Are Made of Stars A Novel by Rochelle B. Weinstein on Audiobook New
  • pdf download My Possessive Alpha Twins For Mate by Veejay
  • PDF The Propagation Handbook A guide to propagating houseplants by Hilton Carter
  • Star Wars The Concept Art of Ralph McQuarrie Mini Book by Insight Editions on Audiobook New
  • Graphic Artists Guild Handbook 16th Edition Pricing Ethical Guidelines by The Graphic Artists Guil
  • Lonely Planet Spain by Isabella Noble Isabel Albiston Alexis Averbuck Federica Bocco Jamie Ditar
  • PDF Kindle 2054 A Novel by Elliot Ackerman James Stavridis USN
  • Online Read Ebook Yarichin Bitch Club Vol. 4 by
  • Read Pdf When Short Stories by Rhonda Baule
  • Read pdf Death Takes Me A Novel by Cristina Rivera Garza Robin Myers Sarah Booker
  • epub download Batman Beyond The Animated Series Classics Compendium - 25th Anniversary Edition by Hi
  • Pdf ePub Our Plastic Problem A Call for Global Solutions by Megan Durnford download ebook
  • PDF EPUB Download The Governesss Scandalous Marriage by Helen Dickson Full Book
  • Read online The New Lunar Society An Enlightenment Guide to the Next Industrial Revolution by David
  • The Game Masters Book of Instant Towns and Cities 160 unique villages towns settlements and cities
  • Pdf ePub Still Standing Dealing with Grief Loss Sickness by Reverend Yolanda Michelle Murphy down
  • Delusions and Grandeur Dreamers of the New West by Mark Sundeen on Iphone New Format
  • Read pdf Lady Bumpkin and Her Lord Villain Volume 2 by Ageha Sakura Kurodeko Vasileios Mousikidi
  • Pdf ePub Kelly Slater A Life of Waves by Kelly Slater Todd Glaser Eddie Vedder download ebook
  • PDF My Name Was Eden A Novel by Eleanor Barker-White
  • download pdf Guy Bourdin Photofile by Gilles De Bure
  • PDF EPUB Download More Days at the Morisaki Bookshop A Novel by Satoshi Yagisawa Eric Ozawa Full Bo
  • pdf download Alec A Novel by William di Canzio
  • DOWNLOAD PDF EPUB The Rest of You by Maame Blue
  • download pdf The New Lunar Society An Enlightenment Guide to the Next Industrial Revolution by Davi
  • Playboy by Constance Debre Holly James on Audiobook New
  • PDF Kindle Spy x Family Family Portrait by Aya Yajima Tatsuya Endo
  • Online Read Ebook Stomp Kick Love Vol. 1 by Sumi Ichiya Sarah Burch
  • Read Pdf Witch Life in a Micro Room Vol. 4 by Akitaka Abby Lehrke
  • Rose in Chains Deluxe Limited Edition by Julie Soto on Iphone New Format
  • PDF A Handheld History by Lost in Cult
  • Download Pdf Pathfinder RPG War of Immortals P2 by James Case Liane Merciel Michael Sayre Jessica
  • pdf download Boy A Novel by Nicole Galland
  • Read online Gears of War Ephyra Rising by Michael A. Stackpole
  • Download PDF Fearless by Lauren Roberts
  • Letizia y yo by Jaime Peñafiel Nuñez on Iphone New Format
  • Download Pdf Story of Taylor Swift by Lindsey Sagar
  • DOWNLOAD PDF EPUB Binding 13 by Chloe Walsh
  • Theory Practice A Novel by Michelle de Kretser on Audiobook New
  • Download Pdf We Who Wrestle with God Perceptions of the Divine by Jordan B. Peterson
  • DOWNLOAD PDF EPUB Love is an Illusion Vol. 5 by Fargo
  • Read online Tome of Beasts 3 5E by Jeff Lee Richard Green Sarah Madsen Kelly Pawlik
  • DOWNLOAD PDF EPUB The Art of Michael Fell by Andrew Wilton
  • Download Pdf Bloodguard by Cecy Robson
  • DOWNLOADS No Strings by Cara Lockwood
  • Celestial Fates by S.L. Morales on Audiobook New
  • Pdf ePub Programming Rust Fast Safe Systems Development by Jim Blandy Jason Orendorff Leonora F.
  • 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-13 22:53:40
Previous
Find pet by ID
Next
Update an existing pet
Built with