My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF The Best Advice from clowns On Dating by Libby K
  • PDF Kindle Chicken Soup for the Soul Laughters Always the Best Medicine 101 Feel-Good Stories by Am
  • Download PDF Magical Mushrooms Coloring Book by Marina Terauds
  • Speak of the Devil A Novel by Rose Wilding on Audiobook New
  • pdf download Past Present Future by Rachel Lynn Solomon
  • epub download Sharing Body Heat by Lexie Davis
  • Read Pdf Mastering Transformers - Second Edition The Journey from BERT to Large Language Models an
  • PDF EPUB Download The Valiant Must Fall Vol. 4 by Yu Aida Full Book
  • pdf download Runescape The Fall of Hallowvale by Robbie MacNiven
  • PDF EPUB Download Behind You by Mike Omer Full Book
  • PDF EPUB Download ENNEAD Vol. 1 Mature Hardcover by Mojito Full Book
  • Build a Beautiful Business con Confianza Become Friends with Risk to Grow Scale and Impact And Avo
  • Project Hail Mary by Andy Weir on Iphone New Format
  • Download PDF Rodeo Reunion by Shannon Taylor Vannatter
  • Online Read Ebook Invisible Doctrine The Secret History of Neoliberalism by George Monbiot Peter Hu
  • epub download Platform Engineering A Guide for Technical Product and People Leaders by Camille Fou
  • epub download Three Eight One by Aliya Whiteley
  • Read pdf A Chance to Heal by Vannetta Chapman Rebecca Kertz
  • Pdf ePub Speaking of Crime The Language of Criminal Justice by Lawrence M. Solan Peter M. Tiersma
  • Uncomfortable Conversations with a Jew by Emmanuel Acho Noa Tishby on Ipad
  • PDF DOWNLOAD The Last One at the Wedding A Novel by Jason Rekulak on Iphone
  • DOWNLOADS Rachel Ruysch Nature into Art by Rachel Ruysch Anna C. Knaap Bernd Ebert Robert Schindl
  • Read pdf Stargrave Bold Endeavour by Joseph A. McCullough Helge C. Balzer
  • epub download Understanding Deep Learning by Simon J.D. Prince
  • Read online Keep Calm And Code On A Tactical Guide for Navigating the Pitfalls of Software Developme
  • Read online NSU Ro80 - The Complete Story by Martin Buckley
  • pdf download Foul Play by Erin Kaste
  • Read Pdf You Love Me by Caroline Kepnes
  • Always by Helen Hardt on Audiobook New
  • PDF EPUB Download Crooked Smile What It Took to Escape a Decade of Homelessness Addiction Crime b
  • Pdf ePub Fence Rise by C. S. Pacat download ebook
  • Pdf ePub Sheep Princess in Wolfs Clothing Vol. 5 by Mito download ebook
  • pdf download Embracing Communist China Americas Greatest Strategic Failure by James Fanell Bradley
  • PDF Kindle Quotations of Frederick Douglass by Frederick Douglass
  • PDF Geomancy Earth Grids Ley Lines Feng Shui Divination Dowsing Dragons by Hugh Newman Jewel
  • Pdf ePub Between Never and Forever by Shain Rose download ebook
  • Down to a Science by Kat Paige on Ipad
  • Rifqa by Mohammed El-Kurd aja monet on Audiobook New
  • Download PDF Zodiac Academy 3 The Reckoning by Caroline Peckham Peckham Susanne Valenti
  • Download PDF The Minimalist-ish Journal Buy Less Live Better and Find Joy in What You Already Have
  • PDF EPUB Download Club Shadowlands by Cherise Sinclair Full Book
  • Read pdf Healing the Widowers Heart by Susan Anne Mason
  • epub download Cat Kid Comic Club From the Creator of Dog Man by Dav Pilkey
  • PDF EPUB Download Hands-On Large Language Models Language Understanding and Generation by Jay Alamma
  • Read pdf Inside the Tentacle Cave Manga Vol. 1 by Umetane Abi Fufukuro
  • A Christmas Carol by Charles Dickens John Leech on Iphone New Format
  • DOWNLOAD PDF EPUB Wyoming Promises by Kerri Mountain
  • download pdf The Winter Soldier Cold Front by Mackenzi Lee
  • The Lycan Princess the Lethal Potions Wiz by Stinas Pen on Iphone New Format
  • PDF DOWNLOAD Hits Flops and Other Illusions My Fortysomething Years in Hollywood by Ed Zwick on
  • 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