My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The Last Great Acts of Saint Peter Re-enacted from Ancient Writings by Edward N. Brown on Ipad
  • PDF EPUB Download Tina Barney Family Ties by Tina Barney Quentin Bajac James Welling Full Book
  • Working for God in a Godless World Vol. 2 by Aoi Akashiro Sonsho Hangetsuban on Audiobook New
  • Online Read Ebook Icebreaker A Novel by Hannah Grace
  • DOWNLOAD PDF EPUB Sonic the Hedgehog 3 The Official Movie Mad Libs by Mickie Matheis
  • Babs the Butterfly A Tale of Kindness and Courage- Transforming from Bystander to Upstander by Verni
  • Pdf ePub Fairy Tale by Stephen King download ebook
  • Ive Been Killing Slimes for 300 Years and Maxed Out My Level Vol. 14 manga by Kisetsu Morita Yusuk
  • Download Pdf The Art of Lies of P by NEOWIZ ROUND8 Studio
  • PDF EPUB Download Moral Treatment by Stephanie Carpenter Full Book
  • PDF EPUB Download Tactics 10th Anniversary Edition A Game Plan for Discussing Your Christian Conv
  • Graphic Design For Everyone Understand the Building Blocks so You can Do It Yourself by Cath Caldwel
  • PDF EPUB Download ESV Archaeology Study Bible by Crossway Full Book
  • DOWNLOAD PDF EPUB Bartalis Bicycle The True Story of Gino Bartali Italys Secret Hero by Megan Hoy
  • DOWNLOADS Orgasm by Maurice Saatchi
  • Yojimbot Volume 1 Metal Silence by Sylvain Repos Noiry on Ipad
  • Read online Zodiac Academy 3 The Reckoning by Caroline Peckham Peckham Susanne Valenti
  • Read pdf The First and Last King of Haiti The Rise and Fall of Henry Christophe by Marlene L. Daut
  • DOWNLOAD PDF EPUB The Woman in Me Italian-language Edition by Britney Spears
  • Pdf ePub Massive by John Trefry download ebook
  • Online Read Ebook A través de ti Through You by Ariana Godoy
  • epub download All Fours by Miranda July
  • pdf download Pathfinders Extraordinary Stories of People Like You on the Quest for Financial Indepen
  • DOWNLOAD PDF EPUB The Girls by John Bowen
  • Read pdf Momo Arashima Duels the Queen of Death by Misa Sugiura
  • Its Getting Hot in Here A Novel by Jane Costello on Ipad
  • PDF EPUB Download Crosshatching in Pen and Ink The Complete Practical Guide by August Lamm Full Book
  • PDF Justice Love and Organizational Healing A Guide to Transformational Consulting by Ora C. Grod
  • pdf download The Blue Wolves of Mibu 4 Blue Miburo by Tsuyoshi Yasuda
  • PDF DOWNLOAD Never Say Never A Novel by Danielle Steel on Iphone
  • Online Read Ebook Los náufragos del Wager by David Grann Luis Murillo Fort
  • PDF EPUB Download Challenger A True Story of Heroism and Disaster on the Edge of Space by Adam Higgi
  • Sinead OConnors Universal Mother by Adele Bertei on Audiobook New
  • DOWNLOADS Mensis Dos almas. Dos cuerpos. Un mismo mar. Mensis Two Souls. Two Bodies. O ne Same Sea
  • Bear County Michigan Stories by John Counts on Ipad
  • DOWNLOADS La Vie de Guinevere by Paula Lafferty
  • DOWNLOADS A Sleight of Shadows by Kat Howard
  • PDF Laid-Back Camp Vol. 16 by Afro Amber Tamosaitis
  • Online Read Ebook 1 500 Color Mixing Recipes for Oil Acrylic Watercolor Achieve precise color when
  • Online Read Ebook Karl Lagerfeld A Fashion History by MARIE OTTAVI
  • PDF Download The Pedestrian Volume 1 by Joey Esposito Sean Von Gorman
  • PDF EPUB Download Short Stories in German for Intermediate Learners Read for pleasure at your level
  • PDF EPUB Download Messi The must-read biography of the World Cup champion by Guillem Balague Full
  • PDF Kindle Claiming His Brothers Baby by Helen Lacey
  • Pdf ePub Green Lantern Vol. 2 Love and War by Jeremy Adams Amancay Nahuelpan download ebook
  • Read online You Should Be So Lucky A Novel by Cat Sebastian
  • DOWNLOADS The Roommate Pact A Novel by Allison Ashley
  • Read online AI Engineering Building Applications with Foundation Models by Chip Huyen
  • DOWNLOAD PDF EPUB Honey Lemon Soda Vol. 8 by Mayu Murata Amanda Haley
  • Download PDF Choujin X Vol. 8 by Sui Ishida
  • 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