My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Baphomet Revealed Mysteries and Magic of the Sacred Icon by Heather Lynn PhD
  • download pdf Well Always Have Summer by Jenny Han
  • download pdf Mi primer libro de criaturas fantásticas Bedtime Book of Magical Creatures by Stephen
  • Read Pdf Orris and Timble The Beginning by Kate DiCamillo Carmen Mok
  • DOWNLOADS VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu
  • Download Pdf Be Useful Seven Tools for Life by Arnold Schwarzenegger
  • Download PDF The Things Gods Break Deluxe Limited Edition by Abigail Owen
  • Online Read Ebook Twisted by Emily McIntire
  • Download PDF Unlocking the Keto Code The Revolutionary New Science of Keto That Offers More Benefits
  • Read online The Nanny Share An addictive twisty and gripping psychological thriller by Emily Shiner
  • download pdf Juniper Mae Knight of Tykotech City by Sarah Soh
  • Online Read Ebook Heart of the Shadow King by Sylvia Mercedes
  • A Seed in the Sun by Aida Salazar on Ipad
  • Pdf ePub Lights Out An Into Darkness Novel by Navessa Allen download ebook
  • PDF EPUB Download Langenscheidt Deutsch - alles drin - All-in-1 German Grammar and Vocabulary Bili
  • PDF Kindle Crack Goes the Cascarón An Eggcellent Not-Just-for-Easter Shellebration by Sara Andrea F
  • download pdf Knife River A Novel by Justine Champine
  • Download Pdf Operative Techniques in Orthopaedic Surgical Oncology by Martin M. Malawer James C Wit
  • The Stain by Rikki Ducornet on Ipad
  • PDF A Rovers Story by Jasmine Warga
  • Love in Bloom by Tara Conrad Willow Winters Lydia Michaels M. Robinson on Audiobook New
  • epub download Home at Summers End by Alys Murray
  • PDF Star Wars Bestiary Vol. 1 Creatures of the Galaxy by S.T. Bende Iris Compiet
  • PDF EPUB Download City of the Snakes by Darren Shan Full Book
  • Online Read Ebook Oaths and Shadows by K. M. Blackburn
  • Read pdf The Fate of Magic by Sara Raasch Beth Revis
  • PDF EPUB Download After-Hours Proposal by Trish Morey Full Book
  • Practical Fraud Prevention Fraud and AML Analytics for Fintech and eCommerce using SQL and Python b
  • download pdf Diver by Lewis Buzbee
  • Pdf ePub The Book of Love A Novel by Kelly Link download ebook
  • Read pdf Learn My Lesson Wicked Villains 2 by Katee Robert
  • PDF Download Fated Winds and Promising Seas A tender-hearted tale of forging fates fantastic crea
  • PDF A Childs War by Patrick Walsh Prithvi Singh
  • PDF DOWNLOAD 50 Mistakes You Should Know Valuable Lessons for Every Chess Player by Jesus De La Vi
  • PDF Download Intarsia Knits 12 Colourful Knitwear Designs to Make Your Own by Anna Husemann
  • Download PDF Natsumes Book of Friends Vol. 30 by Yuki Midorikawa
  • Download Pdf The Bad Box by Carlton Mellick III
  • Read online Something Good by Kenneth Kraegel
  • DOWNLOADS In His Own Write and A Spaniard in the Works by John Lennon Yoko Ono
  • Pdf ePub The Housemate by Sarah Bailey download ebook
  • PDF EPUB Download The Thing from the Lake by Eleanor M Ingram Gina R Collia Full Book
  • Download PDF Shattering the Glass The Remarkable History of Womens Basketball by Pamela Grundy Susa
  • download pdf We Win They Lose Republican Foreign Policy and the New Cold War by Matthew Kroenig D
  • epub download Flamer by Mike Curato
  • Read online ASP.NET Core 9.0 Essentials Explore the .NET Core web stack including Razor Pages Blaz
  • epub download Farewell My Odin Vol.1 by Chihiro Yoshioka
  • Online Read Ebook The Last Bloodcarver by Vanessa Le
  • DOWNLOAD PDF EPUB Tears in the Danube by Nadine Nader
  • Read online Star Wars The Rise and Fall of the Galactic Empire by Chris Kempshall
  • download pdf Our Biggest Fight Reclaiming Liberty Humanity and Dignity in the Digital Age by Fran
  • 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-12 23:23:10
Previous
Find pet by ID
Next
Update an existing pet
Built with