My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Middletide A Novel by Sarah Crouch
  • epub download A Kitchen Witchs Culinary Oracle Deck Gain Daily Insight and Bring Magic to Your Meals
  • PDF Sins Poison of the Heart by Haifaa Younis
  • Read pdf Victoria of Many Faces Vol. 1 manga by Syuu Andria McKnight Komo Ushino Nanna Fujimi
  • pdf download Leonard and Hungry Paul by Ronan Hession
  • DOWNLOAD PDF EPUB Semantic Error comic Vol. 1 by Angy
  • PDF Kindle Learning Kali Linux Security Testing Penetration Testing Ethical Hacking by Ric Messie
  • Download Pdf Islamic Biomorphic Patterns Creating Motifs Inspired by the Natural World by Esra Alham
  • epub download Swift and Saddled A Rebel Blue Ranch Novel by Lyla Sage
  • Killer in Shellview County by R. Barri Flowers on Iphone New Format
  • David Buschs Canon EOS R8 Guide to Digital Photography by David D. Busch on Audiobook New
  • Download PDF Harlequin Heartwarming March 2025 Box Set A Clean and Uplifting Romance by Alexis Morga
  • Read online Big Nate This Means War by Lincoln Peirce
  • Read Pdf Carnal Urges A Queens and Monsters Novel by J.T. Geissinger
  • Read Pdf The Bone Season Box Set Authors Preferred Text by Samantha Shannon
  • Pdf ePub ALIENS WHAT IF... by Paul Reiser Marvel Various Guiu Villanova Phil Noto download ebook
  • DOWNLOADS Una historia divertida by Emily Henry
  • Download PDF Smooth-Talking Texan by Candace Camp
  • PDF Lets Buy the Land and Cultivate It in a Different World Manga Vol. 7 by Rokujuuyon Okazawa Jun
  • PDF EPUB Download Foul Play by Erin Kaste Full Book
  • Pdf ePub El monstruo de colores Doctor de emociones by Anna Llenas download ebook
  • PDF EPUB Download The Mirror House Girls by Faith Gardner Full Book
  • PDF EPUB Download Monster Hunter Vendetta by Larry Correia Full Book
  • Download Pdf Linux Kernel Programming - Second Edition A practical guide to kernel internals writin
  • download pdf Stealing Horses to Great Applause The Origins of the First World War Reconsidered by P
  • DOWNLOADS Todd Hido Intimate Distance Revised and Expanded Edition Over Thirty Years of Photographs
  • PDF Gallant by V. E. Schwab
  • epub download The Wakanda Files A Technological Exploration of the Avengers and Beyond by Troy Benja
  • PDF DOWNLOAD The Disappearing Act The Impossible Case of MH370 by Florence de Changy on Iphone
  • DOWNLOAD PDF EPUB A Cure for the Vet by Ann Roth Julie Benson
  • PDF Tip of the Spear Black Radicalism Prison Repression and the Long Attica Revolt by Orisanmi Bu
  • pdf download Designing Audio Circuits and Systems by Bob Cordell
  • DOWNLOAD PDF EPUB Artificers Alchemy Dungeons Dragons A Young Adventurers Guide by Jim Zub Stac
  • Not Sure Who Needs to Hear This But . . . WE THE URBAN Beautiful Reminders for the Soul by Willie
  • Read pdf Bosss Heir Demand by Jackie Ashenden
  • Read online El niño el topo el zorro y el caballo The Boy the Mole the Fox and the Horse by Ch
  • The Valiant Must Fall Vol. 4 by Yu Aida on Iphone New Format
  • DOWNLOAD PDF EPUB 60 Quick Granny Squares Mix Match Crochet Motifs in 220 SuperwashR Sport from C
  • PDF Kindle The Disney Villains Cookbook by Disney Books
  • pdf download The Legend of Zelda Tears of the Kingdom - The Complete Official Guide Collectors Editi
  • Read online The Dangers in My Heart Vol. 8 by Norio Sakurai
  • Download PDF Why England Slept by John F. Kennedy Henry R. Luce
  • Read pdf Rebel Gardening A beginners handbook to organic urban gardening by Alessandro Vitale
  • DOWNLOAD PDF EPUB Failure Frame I Became the Strongest and Annihilated Everything With Low-Level S
  • PDF EPUB Download Married. With Children vs. the World The Inside Story of the Shock-Com that Launch
  • Crochet Sweaters with a Textured Twist 15 Timeless Patterns for Gorgeous Handcrafted Garments by Lin
  • PDF Download DC Finest Harley Quinn Birth of the Mirth by Paul Dini Bruce Timm Karl Kesel
  • pdf download Almost Sunset by Wahab Algarmi
  • PDF Kindle Kinda Korean Stories from an American Life by Joan Sung
  • Read pdf Fly Me to the Moon Vol. 27 by Kenjiro Hata
  • 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 23:53:20
Previous
Find pet by ID
Next
Update an existing pet
Built with