My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Green Lantern Vol. 2 Love and War by Jeremy Adams Amancay Nahuelpan
  • PDF EPUB Download Jaghatai Khan Warhawk of Chogoris by Chris Wraight Full Book
  • The Ashes and the Star-Cursed King Book 2 of the Nightborn Duet by Carissa Broadbent on Audiobook Ne
  • PDF EPUB Download The Paradise Problem by Christina Lauren Full Book
  • Giving Light to Shadows by Nekesa Sepiwe on Ipad
  • DOWNLOADS Open Season by Jonathan Kellerman
  • Download Pdf Rough Guides Walks and Tours Sri Lanka Top 12 Itineraries for Your Trip Travel Guide wi
  • DOWNLOADS Thinking through Graphic Design History Challenging the canon by Aggie Toppins
  • PDF Blue Lock Volume 17 by Muneyuki Kaneshiro Yusuke Nomura
  • pdf download Pierced Ink by Dani René
  • Christmas Cowboy Kisses A Family for Christmas A Christmas Miracle Christmas with Her Cowboy by
  • PDF EPUB Download A Side Dish of Death by T. C. Lotempio Full Book
  • Download Pdf The Reincarnation of the Strongest Exorcist in Another World Volume 3 by Kiichi Kosuzu
  • The Wrong Dog by Carol Lea Benjamin on Iphone New Format
  • Read online The Lymphatic System Handbook by Flavio Gazzola
  • download pdf Bartalis Bicycle The True Story of Gino Bartali Italys Secret Hero by Megan Hoyt Iac
  • Pdf ePub Opening Repertoire - Queens Gambit Accepted by Nicolas Yap download ebook
  • PDF EPUB Download The Wrong Dog by Carol Lea Benjamin Full Book
  • PDF Download The Baby Swap An addictive and unputdownable psychological thriller with a heart-stop
  • DOWNLOADS The Warriors Bride Alliance by Denise Lynn
  • Cursebound A Novel by Saara El-Arifi on Audiobook New
  • Download PDF Hope The Autobiography by Pope Francis Jorge Mario Bergoglio Carlo Musso Richard Dix
  • Download Pdf Lets Play After Dark by Riley Noble
  • Download Pdf Africa The Definitive Visual History of a Continent by DK David Olusoga
  • PDF Download The Marshals Mission by Anna Zogg
  • Read pdf Pathfinder RPG Treasure Vault P2 by Michael Sayre Mark Seifter Kendra Leigh Speedling
  • Read Pdf Phonics Instructional Manual Catch-up The foundations of phonics engaging activity ideas
  • Online Read Ebook The Pedestrian Volume 1 by Joey Esposito Sean Von Gorman
  • epub download Mostly What God Does is Love You by Savannah Guthrie Morgan Huff
  • PDF EPUB Download For Love of Country Why I left the Democratic Party by Tulsi Gabbard Full Book
  • Haiku Americana by Lawrence Eyre on Audiobook New
  • Magical France 500 Sacred and Mystical Sites by Rob Wildwood on Iphone New Format
  • Nydia Blas Love You Came from Greatness by Nydia Blas Catherine Taylor Nicholas Muellner Cheryl F
  • PDF 2034 A Novel of the Next World War by Elliot Ackerman Admiral James Stavridis USN
  • DOWNLOAD PDF EPUB Platirius Infiltration Book I by D.L. Hannah
  • PDF Download The Art of The Lord of the Rings The War of the Rohirrim by Daniel Falconer
  • Download Pdf Love and Other Hollywood Endings A Spicy Cinematic Enemies to Lovers Romance by Susanna
  • PDF Kindle Destiny The Official Cookbook by Victoria Rosenthal
  • Online Read Ebook Leather Lark Ruinous Love Trilogy 2 by Brynne Weaver
  • PDF EPUB Download Designing Brand Identity A Comprehensive Guide to the World of Brands and Branding
  • Read pdf Her Christmas Fantasy The Winter Bride by Penny Jordan Lynne Graham
  • PDF EPUB Download All the Dangerous Things by Stacy Willingham Full Book
  • Read pdf Unraveller by Frances Hardinge
  • Pdf ePub Beginners Guide to Creating Portraits Learning the essentials developing your own style b
  • Read Pdf The Perfect Mismatch A Novel by Debbie Macomber
  • PDF Kindle A Web of Obsidian The Obsidian Sisterhood 1 by Lydia M Hawke
  • epub download Cherringham - A Fatal Illusion A Cosy Crime Series by Matthew Costello Neil Richards
  • PDF Download Digital Painting Made Simple Create Captivating Portraits in Clip Studio Paint Procr
  • PDF EPUB Download The Night House A novel by Jo Nesbo Neil Smith Full Book
  • DOWNLOADS Whispers of Ravens Keep by Lisa Morris
  • 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
Modified at 2025-06-08 23:32:05
Previous
Find pet by ID
Next
Update an existing pet
Built with