My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle CCNP Security Cisco Secure Firewall and Intrusion Prevention System Official Cert Guide
  • Star Wars Insider The High Republic Tales of Enlightenment by George Mann on Audiobook New
  • Download Pdf Everything I Need to Know I Learned from RPGs A players handbook for the game of life b
  • Whotopia The Ultimate Guide to the Whoniverse by Jonathan Morris Simon Guerrier Una McCormack on A
  • PDF EPUB Download The Desert Talon by Karin Lowachee Full Book
  • PDF DOWNLOAD Percy Jackson and the Olympians The Official Cookbook by Jarrett Melendez on Iphone
  • DOWNLOADS Passage to Dawn Legacy of the Drow 4 Legend of Drizzt 10 by R. A. Salvatore
  • DOWNLOAD PDF EPUB The Dukes Only Desire by Anna Harrington
  • Download Pdf Andres Valencia Painting Without Rules by Andres Valencia Alexander M. Rigby
  • Download PDF Grim and Oro Dueling Crowns Edition A Lightlark Saga Deluxe Companion Book by Alex Aste
  • DOWNLOAD PDF EPUB Useless Magic Lyrics and Poetry by Florence Welch
  • PDF Kindle Discount Armageddon by Seanan McGuire
  • Download Pdf Beach Cottage Kisses by Tara Taylor Quinn
  • PDF Download How to Steal a Galaxy by Beth Revis
  • PDF EPUB Download Claiming His Brothers Baby by Helen Lacey Full Book
  • pdf download Anime Manga Digital Coloring Guide Choose the Colors That Bring Your Drawings to Life
  • pdf download If Youll Have Me by Eunnie
  • DOWNLOADS Digital Painting Made Simple Create Captivating Portraits in Clip Studio Paint Procreate
  • Hillbilly Highway The Transappalachian Migration and the Making of a White Working Class by Max Fras
  • Satans Affair by H. D. Carlton on Audiobook New
  • pdf download Is She Really Going Out with Him by Sophie Cousens
  • pdf download The Housemaid by Freida McFadden
  • PDF Kindle The Marshals Mission by Anna Zogg
  • Endgame 1944 How Stalin Won the War by Jonathan Dimbleby on Iphone New Format
  • PDF Download Joan Mitchell Paints a Symphony La Grande Vallée Suite by Lisa Rogers Stacy Innerst
  • download pdf Cinema Her Way Visionary Female Directors in Their Own Words by Marya E. Gates ALEX K
  • PDF EPUB Download Balada de pájaros cantores y serpientes Edición especial coleccionista The Bal
  • PDF Download Bacteria to AI Human Futures with our Nonhuman Symbionts by N. Katherine Hayles
  • PDF The Nighthouse Keeper by Lora Senf
  • download pdf Follow Me to Africa A Novel by Penny Haw
  • PDF EPUB Download The Cattleman Meets His Match and Second Chance Hero by Sherri Shackelford Winn
  • PDF DOWNLOAD Drawing the Female Figure A Guide for Manga Hentai and Comic Book Artists by on Iph
  • Read Pdf Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli
  • pdf download The Deep Dark A Graphic Novel by Molly Knox Ostertag
  • DOWNLOAD PDF EPUB Minecraft Mega Bite-Size Builds Over 20 Incredible Mini Projects by Mojang AB
  • pdf download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • Reckless by Lauren Roberts on Ipad
  • PDF Download Lost and Lassoed A Rebel Blue Ranch Novel by Lyla Sage
  • El gato que venía del cielo The Guest Cat by Takashi Hiraide on Iphone New Format
  • Download Pdf Fagin the Thief A Novel by Allison Epstein
  • DOWNLOAD PDF EPUB Vagabondo by Paul Freeman
  • PDF DOWNLOAD Hell Mode Volume 8 by Hamuo Mo on Iphone
  • Texas Cinderella and Would-Be Wilderness Wife by Winnie Griggs Regina Scott on Audiobook New
  • pdf download Langenscheidt Deutsch - alles drin - All-in-1 German Grammar and Vocabulary Bilingual E
  • Read Pdf Maybe Now A Novel by Colleen Hoover
  • Never Alone Video Games as Interactive Design by Paola Antonelli Anna Burckhardt Paul Galloway on
  • Read Pdf Daughters of the Blue Moon by Millie Abecassis
  • Download PDF Princeton Review AP Psychology Premium Prep 22nd Edition For the NEW 2025 Exam 3 Pract
  • pdf download Brimstone Deluxe Limited Edition by Callie Hart
  • PDF EPUB Download Theres No Such Thing as an Easy Job by Kikuko Tsumura Full Book
  • 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 22:38:15
Previous
Find pet by ID
Next
Update an existing pet
Built with