My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download PDF Say Youll Remember Me by Abby Jimenez
  • PDF EPUB Download Can I Have a Hug First by Mary Paula Hunter Full Book
  • Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli on Audiobook New
  • Read online Hambre de hombre Hunger for Men by Anamar Orihuela
  • PDF EPUB Download I Got Abducted by Aliens and Now Im Trapped in a Rom-Com by Kimberly Lemming Ful
  • Read Pdf The Black Curtain by Cornell Woolrich George Pelecanos
  • Read pdf 2025 Scott Stamp Postage Catalogue Volume 4 Cover Countries J-M 2 Copy Set Scott Stamp Po
  • PDF EPUB Download PowerShell Automation and Scripting for CyberSecurity Hacking and Defense for Red
  • Download Pdf The Bosss Mistletoe Maneuvers by Linda Thomas-Sundstrom
  • PDF Download The Secret of Secrets by Dan Brown
  • Waste Land A World in Permanent Crisis by Robert D. Kaplan on Iphone New Format
  • DOWNLOAD PDF EPUB AI Engineering Building Applications with Foundation Models by Chip Huyen
  • The Four Steps by Cam Locke on Iphone New Format
  • Read online The Prosecutor One Mans Battle to Bring Nazis to Justice by Jack Fairweather
  • PDF Archetypal Astrology Oracle A 55-Card Deck and Guidebook by Jonathan Waller
  • PDF Kindle Imaizumi Brings All the Gals to His House Vol. 1 by Gorou Nori
  • PDF EPUB Download Murder Rewind Death at Blockbuster Minute Mysteries Set in the 1990s by S. K. Do
  • Pdf ePub Todo está jodido by Mark Manson download ebook
  • Read online Hands on Research for Artists Designers Educators by Harma Staal Jojanneke Gijsen Mi
  • pdf download Flight of Eagles by Jack Higgins
  • Read pdf Reflections of an Invisible Duck by Geigan C. Locke
  • download pdf Rick Steves Belgium Bruges Brussels Antwerp Ghent by Rick Steves Gene Openshaw
  • DOWNLOADS Saving 6 by Chloe Walsh
  • PDF DOWNLOAD A Strange and Stubborn Endurance by Foz Meadows on Iphone
  • DOWNLOAD PDF EPUB Desi Bakes 85 Recipes Bringing the Best of Indian Flavors to Western-Style Desse
  • download pdf How to Romanticize Your Life Joyful Tips and Advice to Elevate Every Day by Sophie Gol
  • PDF Kindle Slöjd The Swedish Art of Wood and Textile Handicrafts by Kerstin Neumüller
  • Download PDF Bath Time Fish by Adam Gamble Mark Jasper
  • Online Read Ebook Be More Moo Deng The Unofficial Coloring Book by DK
  • The Boyhood of Cain by Michael Amherst on Iphone New Format
  • Online Read Ebook Culinary Leverage A Journey Through the Heat by Douglas Keane
  • PDF The Fur Traders Lady by Gabrielle Meyer
  • PDF Download Righting Wrongs Three Decades on the Front Lines Battling Abusive Governments by Kenn
  • Download Pdf Valiant Vel Vel Phillips and the Fight for Fairness and Equality by Jerrianne Hayslett
  • epub download Thundercats Vol. 2 Roar by Declan Shalvey Drew Moss
  • Online Read Ebook The body is where it all begins by Marcy Rae Henry
  • 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-10 01:46:55
Previous
Find pet by ID
Next
Update an existing pet
Built with