My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Asesino de brujas - Vol. 2. Los hijos del rey - Ed. Coleccionista by Shelby Mahurin
  • download pdf The Nightingale Deluxe Edition A Novel by Kristin Hannah
  • PDF DOWNLOAD Sound the Gong by Joan He on Iphone
  • Read Pdf Who Can Afford to Be Critical An Inquiry into What We Cant Do Alone as Designers and in
  • Pdf ePub Hideaway Devils Night 2 by Penelope Douglas download ebook
  • download pdf I Love You So Much Its Killing Us Both A Novel by Mariah Stovall
  • The Cowboys Surprise Bride The Cowboys Unexpected Family by Linda Ford on Audiobook New
  • Download PDF First Light A Novel by Liz Kerin
  • Download Pdf The Isis Thesis A Study Decoding 870 Ancient Egyptian Signs by Judy Kay King
  • New Prize for These Eyes The Rise of Americas Second Civil Rights Movement by Juan Williams on Iphon
  • DOWNLOADS Vagabond Definitive Edition Vol. 1 by Takehiko Inoue
  • Read pdf Her Honorable Enemy by Mary Davis
  • PDF EPUB Download We Who Wrestle with God Perceptions of the Divine by Jordan B. Peterson Full Book
  • PDF EPUB Download The Insiders Guide to Innovation at Microsoft by Dean Carignan JoAnn Garbin Er
  • A Shadow in the Ember by Jennifer L. Armentrout on Audiobook New
  • Download PDF Falsificar la historia Falsifying History by Juan Miguel Zunzunegui
  • Read Pdf A Political Theology for the Us-Mexico Borderlands by Bryan M Ellrod
  • Pdf ePub True Failure by Alex Higley download ebook
  • Read Pdf Lobster and other things Im learning to love by Hollie McNish
  • PDF Download Puzzled 4 Murder by J. C. Eaton
  • epub download Lone Star Heiress and The Runaway Bride by Winnie Griggs Noelle Marchand
  • Download Pdf I.L. by Osamu Tezuka
  • download pdf DuckTales Solving Mysteries and Rewriting History by Rob Renzetti Rachel Vine Niki F
  • DOWNLOAD PDF EPUB The Great Mental Models Volume 1 General Thinking Concepts by Shane Parrish Rh
  • Download Pdf 15 Minutes Before We Really Date Vol. 4 by Perico Caleb Cook
  • Flash Gordon Classic Collection Vol. 2 by Alex Raymond Don Moore on Iphone New Format
  • Come My Fanatics A Journey into the World of Electric Wizard by Dan Franklin on Ipad
  • PDF Mashle Magic and Muscles Vol. 17 by Hajime Komoto
  • The Storytellers Weekly Journal A Guided Planner to Take Your Story from Concept to Completion in 12
  • Online Read Ebook Breaking the Code by Maria Lokken
  • The Veiled Kingdom by Holly Renee on Audiobook New
  • PDF EPUB Download The Night Eaters Book 2 Her Little Reapers by Marjorie Liu Sana Takeda Full Book
  • Download PDF Beyond the Wand The Magic and Mayhem of Growing Up a Wizard by Tom Felton
  • PDF Kindle Cross-Checked by Julia Connors
  • Download Pdf A Deception of Courts Realm of Fey Book III by Ben Alderson
  • PDF Download Piety and Personality The Temperaments of the Saints by Rosemary McGuire Berry
  • Online Read Ebook Violet Promises by Marie Johnston
  • Read online Imposible decir adiós We Do Not Part by Han Kang
  • PDF EPUB Download Accidental Fiancee by Mary Moore Full Book
  • Pdf ePub The Pumpkin Spice Café Dream Harbor Book 1 by Laurie Gilmore download ebook
  • Doctor Sonnets Fantastic by John Teton on Ipad
  • Planeta by Ana Oncina on Ipad
  • Download Pdf Darling in the Franxx Vol. 1-2 by Code000 Kentaro Yabuki
  • DOWNLOADS Away by Megan E. Freeman
  • Pdf ePub A Western Christmas Homecoming by Lynna Banning Lauri Robinson Kathryn Albright download
  • Online Read Ebook ReFocus The Literary Films of Richard Brooks by R. Barton Palmer Homer B. Pettey
  • DOWNLOADS Twin Threat Christmas by Rachelle McCalla
  • download pdf One-Night Crush by Mia Heintzelman
  • Download PDF How to Be a Childrens Book Illustrator A Guide to Visual Storytelling by Publishing 3dt
  • DOWNLOAD PDF EPUB Encyclopaedia Eorzea The World of Final Fantasy XIV Volume III by Square Enix
  • 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