My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download Lawful Vol. 1 by Greg Pak Diego Galindo Irma Kniivila
  • PDF DOWNLOAD Well Always Have Summer by Jenny Han on Iphone
  • PDF Kindle Harlequin Presents March 2025 - Box Set 1 of 2 by Caitlin Crews Abby Green Sharon Kend
  • Download Pdf A Rumored Engagement by Lily George
  • Download Pdf Yojimbot Volume 1 Metal Silence by Sylvain Repos Noiry
  • Online Read Ebook The Witch of the Forests Guide to Folklore Magick Connect to the wisdom of our eld
  • Download Pdf Writing in the Dark by Tim Waggoner
  • PDF Kindle Woven Optical Illusions Pattern and Design from four to 24 shafts by Stacey Harvey-Brown
  • PDF DOWNLOAD The 5 Principles of Parenting Your Essential Guide to Raising Good Humans by Aliza Pr
  • Rose in Chains Deluxe Limited Edition by Julie Soto on Ipad
  • Read pdf The Champ is Here by Nathan Dragon
  • DOWNLOAD PDF EPUB CCNP and CCIE Enterprise Core ENCOR 350-401 Exam Cram by Donald Bacha
  • PDF EPUB Download Oathbound by Tracy Deonn Full Book
  • PDF Download Assistant to the Villain by Hannah Nicole Maehrer
  • PDF EPUB Download The William Morgan Affair Masonic Mystery in Upstate New York by Ann Webster Bunch
  • PDF EPUB Download Every Precious and Fragile Thing A Novel by Barbara Davis Full Book
  • Read pdf The Beauty of Horror 7 Backwards Records Coloring Book by Alan Robert
  • Download Pdf The Art of Michael Fell by Andrew Wilton
  • Read pdf Borderlands Debt or Alive by Anthony Burch
  • PDF DOWNLOAD Evolution Evolving The Developmental Origins of Adaptation and Biodiversity by Kevin
  • Online Read Ebook Klara and the Sun by Kazuo Ishiguro
  • DOWNLOADS Beautiful Broken Love by Shanora Williams
  • PDF The Fiancée Farce A Novel by Alexandria Bellefleur
  • PDF EPUB Download American Populist Huey Long of Louisiana by Thomas E. Patterson Full Book
  • DOWNLOAD PDF EPUB The Bog Wife A Novel by Kay Chronister
  • Online Read Ebook Runescape The Fall of Hallowvale by Robbie MacNiven
  • Read online Deadly Equation An AJ Docker and Banshee Thriller by Gary Gerlacher
  • No-Sew Mini Amigurumi 40 Crochet Patterns for Super Cute Super Small Plushies by Genna Tatu on Ipho
  • The Worlds Finest Assassin Gets Reincarnated in Another World as an Aristocrat Vol. 7 manga by Rui
  • An Amish Mothers Secret Past and Her Amish Suitors Secret by Jo Ann Brown Carrie Lighte on Ipad
  • epub download Otaku Vampires Love Bite Vol. 2 by Julietta Suzuki
  • DOWNLOADS The Forgive for Good Recovery Workbook Overcome Addiction Heal Your Past and Find Peace
  • Bold Beans recipes to get your pulse racing by Amelia Christie-Miller on Iphone New Format
  • Harry Potter and the Chamber of Secrets MinaLima Edition Illustrated edition by on Iphone New Forma
  • Online Read Ebook Rick Kotanis 400 Million Dollar Summer by Waka T. Brown
  • DOWNLOADS Kaibyo The Supernatural Cats of Japan by
  • Read online The Rust Programming Language 2nd Edition by Steve Klabnik Carol Nichols
  • Read pdf A Murder Most French by Colleen Cambridge
  • DOWNLOADS The Hachioji Specialty Tengus Love Vol. 2 by Tomo Nanao Nicole Wilder
  • Arctic Knits Jumpers Socks Mittens and More by Weichien Chan on Audiobook New
  • download pdf Red Book 2024 Report of the Committee on Infectious Diseases by David W. Kimberlin El
  • Pdf ePub Asterix Vol. 40 Asterix and the White Iris by René Goscinny Albert Uderzo Jean-Yves Ferr
  • Download Pdf A Little Life by Hanya Yanagihara
  • DOWNLOADS Lonely Planet Japan 17 by
  • DOWNLOAD PDF EPUB Why We Die The New Science of Aging and the Quest for Immortality by Venki Ramak
  • PDF EPUB Download Return to the Isle of the Lost The Graphic Novel by Melissa de la Cruz Robert V
  • epub download Sam Thayers Field Guide to Edible Wild Plants of Eastern and Central North America by
  • PDF Kindle Stars Around My Scars The Annotated Poetry of Taylor Swift by Elly McCausland
  • A British Girls Guide to Hurricanes and Heartbreak by Laura Taylor Namey on Iphone New Format
  • PDF EPUB Download The Ranchers Legacy and The Texans Secret Daughter by Jessica Keller Jolene Navar
  • 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 21:47:45
Previous
Find pet by ID
Next
Update an existing pet
Built with