My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Wistoria Wand and Sword 7 by Toshi Aoi Fujino Omori
  • PDF EPUB Download When God Made You Jamirs Story Meet Jamir Gods Chosen One by Tawanda Jupiter Ful
  • Online Read Ebook The Ends of Things A Novel by Sandra Chwialkowska
  • PDF Download French - English Illustrated Dictionary A Bilingual Visual Guide to Over 10 000 Frenc
  • PDF DOWNLOAD The Russian-Ukrainian War 2023 A Second Year of Hell and the Dawn of Drone Warfare b
  • Download Pdf Assassin of Reality A Novel by Marina Dyachenko
  • PDF Download Follow Her Heart by Marta Perry
  • Fischers Mastery of Surgery by E. Christopher Ellison Gilbert R. Upchurch Jr. MD Philip Alexander
  • Read online Cry of the Wild Eight Animals Under Siege by Charles Foster
  • Read online Toxicity to Triumph Navigating Work with Emotional Intelligence and a Growth Mindset by
  • PDF Kindle Geiger Volume 2 The Nuclear Knight by Geoff Johns Gary Frank Brad Anderson
  • download pdf Rooster Fighter Vol. 7 by Shu Sakuratani
  • pdf download Bert Transcribed The Bert Jansch Songbook Volume 2 by Bert Jansch
  • download pdf Clown in a Cornfield by Adam Cesare
  • The Drowning Machine and Other Obsessions by Emma E Murray on Iphone New Format
  • epub download The Capitalist Manifesto by Johan Norberg
  • PDF EPUB Download Imperfect Solidarities by Aruna DSouza Full Book
  • Visions 2023__Illustrators Book by pixiv pixiv Inc Alice Prowse on Audiobook New
  • Read online My Name Was Eden A Novel by Eleanor Barker-White
  • DOWNLOAD PDF EPUB Solo Leveling Vol. 1 light novel by Chugong
  • Download PDF The Girls of the Glimmer Factory A Novel by Jennifer Coburn
  • pdf download Follow Your Tao A Simple Guide to Balancing Your Energy for Inner Harmony by Stephanie
  • Read Pdf On The Edge by K. Bromberg
  • download pdf Boy A Novel by Nicole Galland
  • download pdf Three Grumpy Groomsmen by Emma Foxx
  • The Beasts We Bury by D. L. Taylor on Ipad
  • PDF DOWNLOAD Sweet Pea School Growing Arranging the Gardens Most Romantic Blooms by Marryn Mathis
  • pdf download Til Death Do Us Bard A heart-warming tale of marriage magic and monster-slaying by Ro
  • DOWNLOAD PDF EPUB Titans Vol. 2 The Dark-Winged Queen by Tom Taylor Lucas Meyer
  • download pdf A Girl on the Shore Collectors Edition by Inio Asano
  • Pdf ePub The Mimosa Confessions Light Novel Vol. 2 by Mei Hachimoku KUKKA download ebook
  • pdf download Run Wild Sa Ye Novel Vol. 1 Special Edition by Wu Zhe Ding Yue Rong Tayue Jin
  • Pdf ePub Russia and Ukraine Entangled Histories Diverging States by Maria Popova Oxana Shevel dow
  • PDF Download Nothing Serious A Novel by Emily J. Smith
  • DOWNLOADS You A Novel by Caroline Kepnes
  • PDF EPUB Download Pokémon Timelines A Journey Through the Animated Series by Katherine Andreou Gl
  • PDF DOWNLOAD Battle Angel Alita Mars Chronicle Volume 10 by Yukito Kishiro on Iphone
  • epub download DC Versus Marvel Omnibus by Dennis ONeil George Perez Dan Jurgens Chris Claremont
  • Bingsu for Two by Sujin Witherspoon on Audiobook New
  • epub download Sigil Witchery Oracle 60 Cards for Drawing Magic by Laura Tempest Zakroff
  • Online Read Ebook Protecting the Pack by Julie Miller
  • PDF DOWNLOAD 1635 The Weavers Code by Eric Flint Jody Lynn Nye on Iphone
  • The Ultimate Guide to Carp Fishing by Joseph Earl-Wright on Iphone New Format
  • Read Pdf Smart Not Loud How to Get Noticed at Work for All the Right Reasons by Jessica Chen
  • Online Read Ebook The Nightmare Before Kissmas A Royals and Romance Novel by Sara Raasch
  • download pdf Baby Let It Snow by Beverly Jenkins Elaine Overton
  • Whispered Curses by S D Gredell on Audiobook New
  • PDF Kindle Sabor Judío The Jewish Mexican Cookbook by Ilan Stavans Margaret E. Boyle Ilan Rabchin
  • Read pdf In Her Enemys Bed by Penny Jordan
  • Online Read Ebook Our Favorite Appetizer Recipes Second Edition by Gooseberry Patch
  • 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-11 00:13:01
Previous
Find pet by ID
Next
Update an existing pet
Built with