My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Pdf ePub The Outlaws Second Chance by Angie Dicken download ebook
  • Download Pdf The Liars Crown by Abigail Owen
  • Read online Birthday Party Demon by Wendy Dalrymple
  • Pdf ePub Spirits Adopted A Daisy Gumm Majesty Mystery Book 20 Historical Cozy Mystery by Alice Dun
  • PDF EPUB Download Christmas Cover-Up by Lynette Eason Full Book
  • PDF Last Bench by Ram Halady
  • Online Read Ebook The Lost Library by Rebecca Stead Wendy Mass
  • Read pdf Joan Didion The 1960s 70s LOA 325 Run River Slouching Towards Bethlehem Play It As I
  • download pdf Holly A Belladonna Novella by Adalyn Grace
  • Online Read Ebook Now It All Makes Sense How An ADHD Diagnosis Brought Clarity To My Life by Alex Pa
  • Read Pdf Doctor Sonnets Fantastic by John Teton
  • PDF EPUB Download The Legend of Zelda Tears of the Kingdom - The Complete Official Guide Collectors
  • DOWNLOAD PDF EPUB Embracing Beauty Serene Spaces for Living by Beth Webb
  • PDF Kindle The Greatest Nobodies of History Minor Characters from Major Moments by Adrian Bliss
  • Pdf ePub Easy Learning German Dictionary Trusted support for learning by Collins download ebook
  • PDF Kindle Intermezzo A Novel by Sally Rooney
  • epub download The Art of Returnal by Housemarque
  • download pdf The Quiet Librarian A Novel by Allen Eskens
  • PDF Kindle Konrad Curze The Night Haunter by Guy Haley
  • epub download Desperate Measures Deluxe Edition by Katee Robert
  • DOWNLOADS The Shepherds Betrothal by Lynn A. Coleman
  • Download Pdf The Lost Deer Queen by H J Nichols
  • download pdf NSCAs Essentials of Sport Science by NSCA -National Strength Conditioning Association
  • DOWNLOAD PDF EPUB Stand By Me A Guide to Navigating Modern Meaningful Caregiving by Allison J. Ap
  • PDF DOWNLOAD Public Net Worth Accounting - Government - Democracy by Ian Ball Willem Buiter John
  • DOWNLOAD PDF EPUB Godot 4 Game Development Cookbook Over 50 solid recipes for building high-qualit
  • Online Read Ebook Jonty Gentoo The Adventures of a Penguin by Julia Donaldson Axel Scheffler
  • PDF One by One by Freida McFadden
  • Man Enough Undefining My Masculinity by Justin Baldoni on Ipad
  • PDF Why Am I Like This My Brain Isnt Broken and Neither Is Yours by Gemma Styles
  • SHEMP The Biography of The Three Stooges Shemp Howard The Face of Film Comedy by Burt Kearns Drew
  • PDF EPUB Download Elvis and Me by Priscilla Beaulieu Presley Sandra Harmon Full Book
  • Download Pdf Beg Borrow or Steal A Novel by Sarah Adams
  • PDF DOWNLOAD Murdle Jr. Curious Crimes for Curious Minds Solve Your Way Through 40 Puzzle Mysterie
  • Download Pdf Pummel the Devil A Biblical Foundation for Spiritual Warfare by Daniel Duval
  • pdf download Good Morning Cat by Rob Abbott Katie Saunders
  • Download PDF Studio Ghibli Architecture in Animation by Studio Ghibli
  • PDF EPUB Download Her Soul to Take A Paranormal Dark Academia Romance by Harley Laroux Full Book
  • PDF DOWNLOAD A Business Proposal Vol. 8 by Haehwa NARAK Perilla on Iphone
  • PDF When the Night Comes Falling A Requiem for the Idaho Student Murders by Howard Blum
  • Read Pdf Grillos Presents Pickled 100 Pickle-centric Recipes to Change Your Life by Grillos Pickle
  • PDF Download Im a Behemoth an S-Ranked Monster but Mistaken for a Cat I Live as an Elf Girls Pe
  • Online Read Ebook Sable Peak by Devney Perry
  • PDF DOWNLOAD TSF Monogatari by Shindo L on Iphone
  • Read online Metamorphoses Translated by Stephanie McCarter by Stephanie McCarter Ovid
  • epub download Never Lie by Freida McFadden
  • PDF Download The Prison Healer by Lynette Noni
  • Pdf ePub Minecraft Gather Cook Eat Official Cookbook by Tara Theoharis download ebook
  • PDF DOWNLOAD A Christmas Carol by Charles Dickens John Leech on Iphone
  • Read pdf Over The Limit by K. Bromberg
  • 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