My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Viscera Objectica by Yugo Limbo
  • PDF Download How to Read and Interpret a Birth Chart Guideposts for Understanding Natal Astrology
  • Read online JavaScript Essentials For Dummies by Paul McFedries
  • DOWNLOADS The Perfect Marriage Collectors Edition by Jeneva Rose
  • DOWNLOADS To Heights and unto Depths Letters from the Colorado Trail by John Nepil
  • On the Art and Craft of Doing Science by Kenneth Catania on Ipad
  • Online Read Ebook Notes from an Island by Tove Jansson Alexander Chee
  • Read pdf The Kitty-Catwalk by Melody Mews Ellen Stubbings
  • DOWNLOADS Crack Goes the Cascarón An Eggcellent Not-Just-for-Easter Shellebration by Sara Andrea Faj
  • Pdf ePub Friedrich Dürrenmatt Selected Writings Volume 1 Plays by Friedrich Dürrenmatt Joel Agee
  • Read Pdf Sunrise on the Reaping A Hunger Games Novel by Suzanne Collins
  • DOWNLOADS Party of One The Rise of Xi Jinping and Chinas Superpower Future by Chun Han Wong
  • PDF DOWNLOAD Found in You by Laurelin Paige on Iphone
  • Read Pdf Yes No or Maybe Light Novel 2 - Center of the World by Michi Ichiho Lala Takemiya
  • Online Read Ebook Look Up at The Moon by Karen Phillips Yuliana Simakovska
  • DOWNLOADS Great Big Beautiful Life by Emily Henry
  • download pdf Murder in the Dressing Room by Holly Stars
  • Download PDF Whats Your Favorite Animal by Eric Carle
  • Hideaway A Novel by Hannah Alexander on Ipad
  • pdf download Love Sincerely Yours by Meghan Quinn Sara Ney
  • PDF DOWNLOAD The Soros Agenda by Rachel Ehrenfeld on Iphone
  • The Wizard of Oz by L. Frank Baum William Wallace Denslow on Iphone New Format
  • PDF EPUB Download Dakota Cowboy by Linda Ford Full Book
  • pdf download Keiichi Tanaami by KEIICHI TANAAMI ALESSIO ASCARI Hans Ulrich Obrist Carlo McCormick
  • A Dark and Drowning Tide A Novel by Allison Saft on Iphone New Format
  • epub download The Lost Library by Rebecca Stead Wendy Mass
  • Read Pdf The Matchmakers Match by Jessica Nelson
  • PDF Playground by Aron Beauregard
  • What Happens at the Beach. by Rachael Stewart on Ipad
  • A British Girls Guide to Hurricanes and Heartbreak by Laura Taylor Namey on Audiobook New
  • PDF Download Galway Confidential A Jack Taylor Novel by Ken Bruen
  • Read pdf The Art of Insight How Great Visualization Designers Think by Alberto Cairo
  • PDF Download Say Hello to My Little Friend A Novel by Jennine Capó Crucet
  • PDF Download Isaac Julien Lina Bo Bardi--A Marvellous Entanglement by Isaac Julien Giuliana Bruno
  • Online Read Ebook Five Doors of Success How to Build a Future Without Luck Money or Friends in Hig
  • download pdf A Shining by Jon Fosse Damion Searls
  • PDF EPUB Download Small Wars Manual Poems by Chris Santiago Full Book
  • PDF Download Awakening the Witch Blood Embodying the Arte Magical by Nathan King Wycke Malliway
  • Download Pdf The Art of War by Sun Tzu
  • PDF Kindle Moral Treatment by Stephanie Carpenter
  • Download Pdf Well Always Have Summer by Jenny Han
  • DOWNLOAD PDF EPUB The Dry Heart by Natalia Ginzburg Frances Frenaye Italo Calvino
  • Read Pdf The Exvangelicals Loving Living and Leaving the White Evangelical Church by Sarah McCam
  • PDF EPUB Download I Hate Fairyland Book Three by Skottie Young Brett Bean Full Book
  • Boy A Novel by Nicole Galland on Iphone New Format
  • Download PDF Cute Fantasy Art Class Mystical Anime Besties - Learn to Draw over 50 Charming Characte
  • download pdf The Crimson Road by A.G. Slatter
  • PDF Kindle The Giants of Stonehenge and Ancient Britain by Hugh Newman Jim Vieira
  • Pdf ePub Caídos del cielo 60 aniversario de Alfaguara Fallen from the Sky by Ray Loriga download
  • epub download The Oracle Code by Marieke Nijkamp Manuel Preitano
  • 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