My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf Dirty Biology The X-Rated Story of Sex by Leo Grasset Kendra Boileau Grasset Colas
  • Read pdf Gentlemen of the Woods Manhood Myth and the American Lumberjack by Willa Hammitt Brown
  • PDF EPUB Download Christmas on the Prairie by Frances Devine Full Book
  • epub download The Message by Ta-Nehisi Coates
  • Online Read Ebook The Violent Take It by Force by Matthew D. Taylor
  • Read pdf Villainess Level 99 I May Be the Hidden Boss but Im Not the Demon Lord Act 3 Light Novel
  • Sugar Apple Fairy Tale Vol. 4 manga by Aki YozoranoUdon Miri Mikawa Nicole Wilder on Ipad
  • PDF EPUB Download The LEGO MINDSTORMS Robot Inventor Idea Book by Yoshihito Isogawa Full Book
  • PDF EPUB Download Fangirl Vol. 3 The Manga by Rainbow Rowell Gabi Nam Full Book
  • The Housemaids Secret by Freida McFadden on Audiobook New
  • PDF EPUB Download The Lord of the Rings The War of the Rohirrim Visual Companion by Chris Smith Fu
  • pdf download Dont Eat the Cleaners Tiny Fish with a Big Job by Susan Stockdale
  • PDF DOWNLOAD Carrying Albert Home by Homer Hickam on Iphone
  • PDF EPUB Download Only in Darkness by Brenda Stanley Full Book
  • Pdf ePub Red Sky Mourning by Jack Carr download ebook
  • Operative Techniques in Orthopaedic Surgical Oncology by Martin M. Malawer James C Wittig on Iphone
  • PDF EPUB Download Kama-Sutra Una postura para cada dia by DK Full Book
  • pdf download Volver la vista atrás by Juan Gabriel Vásquez
  • Read online Threshold to Valley Forge The Six Days of the Gulph Mills Encampment by Sheilah D. Vance
  • epub download Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenchen Konc
  • epub download The Reality of Everything Flight Glory 5 by Rebecca Yarros
  • Download Pdf Anxious People by Fredrik Backman
  • DOWNLOAD PDF EPUB Good as Gold How to Unleash the Power of Sound Money by Judy Shelton
  • Download PDF Trophies and Scars Ray Evernham by Ray Evernham Joe Garner Jeff Gordon
  • Online Read Ebook RHCSA Red Hat Enterprise Linux 9 Certification Study Guide Eighth Edition Exam EX
  • epub download A Batuu Adventure Star Wars Galaxys Edge by Jeneanne DeBois Bill Robinson
  • Read pdf Boy Meets Maria by Peyo
  • Read Pdf Ballad of Sword and Wine Qiang Jin Jiu Novel Vol. 2 by Tang Jiu Qing St
  • download pdf The Mindful Self-Compassion Workbook A Proven Way to Accept Yourself Build Inner Stre
  • epub download Buffy the Vampire Slayer Tiny Tarot Deck and Guidebook by Casey Gilly Karl James Moun
  • Read online That Time I Got Drunk and Yeeted a Love Potion at a Werewolf by Kimberly Lemming
  • pdf download Omniscient Readers Viewpoint novel Vol. 1 by singNsong
  • Download Pdf On the Art and Craft of Doing Science by Kenneth Catania
  • DOWNLOAD PDF EPUB Villains Are Destined to Die Vol. 7 by SUOL AH Cho David Odell
  • DOWNLOADS The Secret History of Audrey James A Novel by Heather Marshall
  • Online Read Ebook Loathe to Love You by Ali Hazelwood
  • PDF DOWNLOAD A Duet with the Siren Duke by Elise Kova on Iphone
  • PDF EPUB Download The New Brazilian Mediascape Television Production in the Digital Streaming Age by
  • pdf download Konosuba Gods Blessing on This Wonderful World Vol. 18 manga by Natsume Akatsuki Masa
  • PDF EPUB Download Final Cut by Charles Burns Full Book
  • Read Pdf Matzah Day by Charlotte Offsay Jason Kirschner
  • Read pdf One Piece Pirate Recipes by Sanji
  • Read Pdf Big Fan A Modern Romance by Alexandra Romanoff
  • Empire of the Vampire by Jay Kristoff Bon Orthwick on Audiobook New
  • DOWNLOAD PDF EPUB River East River West A Novel by Aube Rey Lescure
  • DOWNLOADS The Bride Bet Girl Meets Duke by Tessa Dare
  • PDF EPUB Download ISEKAI AFFAIR 10 Years After Defeating the Demon King the Hero Cheats on His Wife
  • PDF DOWNLOAD Garts Thought Awesome Edition by Gart Octavius Riot on Iphone
  • Online Read Ebook This American Ex-Wife How I Ended My Marriage and Started My Life by Lyz Lenz
  • Read Pdf Culpa nuestra Our Fault by Mercedes Ron
  • 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