My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Dismantling the Masters Clock On Race Space and Time by Rasheedah Phillips
  • PDF EPUB Download The Love of My Afterlife GMA Book Club Pick by Kirsty Greenwood Full Book
  • pdf download Birding for Babies Birds Around the World An Opposites Book by Chloe Goodhart Gareth L
  • DOWNLOADS Ibis A Novel by Justin Haynes
  • Read pdf The Hundredth Voice by Caitlin Like
  • epub download Legion by William Peter Blatty
  • PDF Download Never Pay the First Bill And Other Ways to Fight the Health Care System and Win by Ma
  • Read online Hidden Axis Forces Beyond the Visible World by Shepard Ambellas
  • The Book of Yokai Expanded Second Edition Mysterious Creatures of Japanese Folklore by Michael Dyla
  • PDF Kindle Shogun by James Clavell
  • PDF EPUB Download Battlefield of the Mind 30th Anniversary Edition Winning the Battle in Your Mind b
  • Download Pdf Defiant by Brandon Sanderson
  • Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros on Iphone New Format
  • Read pdf Flew Too High A gay drug smugglers transcendent odyssey in the heyday of Studio 54 by Lou
  • download pdf Dragonlance Chronicles by Margaret Weis Tracy Hickman
  • PDF EPUB Download The Essential Pottery Notebook The Secret to Successful Kiln Firings by Kara Leigh
  • Online Read Ebook The Poorly Made and Other Things A Story Collection by Sam Rebelein
  • Read online Tom Clancy Flash Point by Don Bentley
  • Configurations of Time Imagining Other Temporalities in the Artist Residency by Angela Serino on Ipa
  • pdf download Ancestral Bloodline The Black Crown by Rawi Akhbar Mpodol Ion
  • BE A SCRIBE Working for a Better Life in Ancient Egypt by Michael Hoffen Christian Casey Jen Thum
  • Read online In the Distance by Hernan Diaz
  • PDF DOWNLOAD When Grief Comes Home A Gentle Guide for Living Through Loss While Supporting Your Ch
  • epub download The Dark Ascension Series The Wicked Ones by Robin Benway
  • Read Pdf Tender Is the Flesh by Agustina Bazterrica Sarah Moses
  • Pdf ePub Slow Food Fast Cars Casa Maria Luigia - Stories and Recipes by Massimo Bottura Lara Gilm
  • PDF EPUB Download The Last Wish Illustrated Edition by Full Book
  • pdf download Schroeder by Neal Cassidy
  • Download Pdf Like Mother Like Mother A Novel by Susan Rieger
  • PDF DOWNLOAD The Metabarons Second Cycle Finale by Alejandro Jodorowsky Pete Woods Jerry Frissen
  • PDF Download Dark Lord The Rise of Darth Vader Star Wars by James Luceno
  • DOWNLOADS Moon Cape Cod Marthas Vineyard Nantucket Best Beaches Coastal Towns Clambakes Lobster
  • PDF Soul Eater The Perfect Edition 17 by Atsushi Ohkubo
  • epub download The Southern Charmer by Janice Maynard
  • Read Pdf Assassins Apprentice Volume 2 Graphic Novel by Jody Houser Robin Hobb Ryan Kelly Jordi
  • PDF EPUB Download The Fix How the Twelve Steps Offer a Surprising Path of Transformation for the W
  • DOWNLOADS ProQuest Statistical Abstract of the United States 2025 The National Data Book by Bernan P
  • PDF EPUB Download Lines of Courage by Jennifer A. Nielsen Full Book
  • Read pdf The Hotel Balzaar by Kate DiCamillo Júlia Sardà
  • PDF Kindle Alphabetical Diaries by Sheila Heti
  • pdf download The Art of Insight How Great Visualization Designers Think by Alberto Cairo
  • DOWNLOAD PDF EPUB Winter Recipes from the Collective Poems by Louise Glück
  • PDF Solo Leveling Vol. 10 comic by h-goon Dubu J. Torres Hye Young Im
  • PDF EPUB Download The Secret of the Caves The Hardy Boys Book 7 by Franklin W. Dixon Full Book
  • PDF Wolf Marshalls Jazz Guitar Course Mastering the Jazz Language - Book with Over 600 Audio Tracks
  • Online Read Ebook Catholic Schoolgirls VS Inbreeds A Gripping Backwoods Horror Thriller in the Slash
  • Introduction to Educational Research by Craig A Mertler on Audiobook New
  • pdf download Treasures Old and New Wesleyan Faith for Life Today Treasures Old and New by Michael Ad
  • pdf download The Power of Dua by Aliyah Umm Raiyaan
  • Read pdf The Extraterrestrial Species Almanac The Ultimate Guide to Greys Reptilians Hybrids an
  • 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