My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf When Kalis Collide Second Edition by Louis Cerbo
  • Read pdf Burn for Me by Ilona Andrews
  • PDF DOWNLOAD How to Make Herself Agreeable to Everyone A Memoir by Cameron Russell on Iphone
  • PDF EPUB Download A Love Song for Ricki Wilde by Tia Williams Full Book
  • Quest for the Hidden City Star Wars The High Republic by George Mann on Iphone New Format
  • DOWNLOAD PDF EPUB Playground A Novel by Richard Powers
  • DOWNLOAD PDF EPUB by Paul Balibar
  • Pdf ePub You and I Are Polar Opposites Vol. 4 by Kocha Agasawa download ebook
  • Download PDF La red purpura The Purple Network by Carmen Mola
  • DOWNLOADS I Bet Youd Look Good in a Coffin Kitty Collins Book 2 by Katy Brent
  • PDF EPUB Download The Rainfall Market by You Yeong-Gwang Slin Jung Full Book
  • Pdf ePub The Authorized P-Funk Song Reference Official Canon of Parliament-Funkadelic 1956-2023 by
  • PDF Download The Game Masters Book of Instant Towns and Cities 160 unique villages towns settlem
  • Pdf ePub Tsalmoth by Steven Brust download ebook
  • Pdf ePub Smart Not Loud How to Get Noticed at Work for All the Right Reasons by Jessica Chen downl
  • Read pdf Never Gamble Your Heart by Lindsay Lovise
  • Read pdf The Magic of Knowing What You Want A Practical Guide to Unearthing the Wisdom of Your Des
  • PDF EPUB Download Fatal Vision by Joe McGinniss Full Book
  • How to Be Dateable The Essential Guide to Finding Your Person and Falling in Love by Julie Krafchick
  • DOWNLOADS Star Wars The Secrets of the Clone Troopers by Marc Sumerak Alberto Buscicchio
  • download pdf Meet Every Learners Needs Redesigning Instruction So All Students Can Succeed by Rober
  • PDF EPUB Download David Hamilton Twenty Five Years of an Artist by David Hamilton Full Book
  • PDF The Last Bookstore on Earth by Lily Braun-Arnold
  • Read Pdf Sam Thayers Field Guide to Edible Wild Plants of Eastern and Central North America by Sam
  • DOWNLOAD PDF EPUB Carmilla Deluxe Edition The Dark Sapphic Romance that inspired Dracula by Sheri
  • PDF EPUB Download Free Agents How Evolution Gave Us Free Will by Kevin J. Mitchell Full Book
  • download pdf Life After Power Seven Presidents and Their Search for Purpose Beyond the White House
  • Online Read Ebook Family Doctor A totally gripping and pulse-pounding psychological thriller by J M
  • Read pdf Boys Who Hunt Dark RH Bully Romance by Clarissa Wild
  • DOWNLOAD PDF EPUB Playworld A Novel by Adam Ross
  • DOWNLOADS Critical Role Vox Machina Coloring Book by Critical Role Olivia Samson CoupleOfKooks No
  • Download Pdf Hogwarts Legacy The Official Game Guide by Paul Davies Kate Lewis
  • DOWNLOADS Kuma Kuma Kuma Bear Light Novel Vol. 20 by Kumanano 029
  • American Horticultural Society Essential Guide to Perennial Gardening Techniques and Know-How for Pl
  • Read Pdf Romanticize Your Life 365 Simple Ways to Embrace the Beauty of Every Day by Harper Celebr
  • 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