My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub Harlequin Heartwarming March 2025 Box Set A Clean and Uplifting Romance by Alexis Morgan
  • Read online SURVIVING SELF DESTRUCTION by Christain Taylor
  • pdf download A Long Time Coming by Meghan Quinn
  • PDF EPUB Download Table for 51 Lessons Learned from Sharing Meals Across America by Shari Leid Full
  • epub download Space to Grow Unlocking the Final Economic Frontier by Matthew Weinzierl Brendan Ross
  • PDF DOWNLOAD The Greatest Nobodies of History Minor Characters from Major Moments by Adrian Bliss
  • PDF DOWNLOAD The Governesss Scandalous Marriage by Helen Dickson on Iphone
  • PDF EPUB Download The SBL Study Bible by Society of Biblical Literature Full Book
  • DOWNLOAD PDF EPUB The Earth and I by Arthur Firstenberg
  • Download Pdf A Crochet World of Creepy Creatures and Cryptids 40 Amigurumi Patterns for Adorable Mon
  • Online Read Ebook Make Radio Hands-On Adventures in the Hidden Universe of Radio Waves by Fredrik Ja
  • PDF Download Air-Borne The Hidden History of the Life We Breathe by Carl Zimmer
  • Bake With Brooki by Brooke Bellamy on Audiobook New
  • Pdf ePub The Bride Bet Girl Meets Duke by Tessa Dare download ebook
  • PDF Kindle Framed Astonishing True Stories of Wrongful Convictions by John Grisham Jim McCloskey
  • A Concise Introduction to Robot Programming with ROS2 by Francisco Martín Rico on Ipad
  • Portrait of a Feminist A Memoir in Essays by Marianna Marlowe on Ipad
  • Online Read Ebook TANKHEAD - Mechanical Encyclopedia Artbook by Tim Popelier Emerson Tung
  • PDF Download Afterlove by Tanya Byrne
  • Un cuento perfecto A Perfect Short Story by Elisabet Benavent on Iphone New Format
  • download pdf Iron Flame by Rebecca Yarros
  • PDF Download The Obscene Bird of Night unabridged centennial edition by José Donoso Leonard Made
  • epub download Hands on Research for Artists Designers Educators by Harma Staal Jojanneke Gijsen
  • Online Read Ebook Smooth-Talking Texan by Candace Camp
  • DOWNLOAD PDF EPUB The Gentlemans Confession by Anneka R. Walker
  • PDF EPUB Download Fight Right How Successful Couples Turn Conflict into Connection by Julie Schwartz
  • Online Read Ebook Shallow River by H. D. Carlton
  • Daily Lessons to be studied during the month of Ramadan by Abd-al-aziz Ibn Abdullah Al-rajihi on Ipa
  • PDF EPUB Download Lessons for Living What Only Adversity Can Teach You by Phil Stutz Full Book
  • pdf download The Three-Body Problem Vol. 2 comic The Comic Edition by XuDong Cai Jin Cai Twilight
  • DOWNLOADS The Ocean at the End of the Lane by Neil Gaiman
  • Download PDF Projections A Novel by S. E. Porter
  • Read pdf Spirits Adopted A Daisy Gumm Majesty Mystery Book 20 Historical Cozy Mystery by Alice Du
  • PDF Kindle Loca by Alejandro Heredia
  • PDF DOWNLOAD Hojas de dedalera by Victoria Álvarez on Iphone
  • 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
Previous
Find pet by ID
Next
Update an existing pet
Built with