My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Mask of the Deer Woman by Laurie L. Dove
  • PDF EPUB Download Dream State A Novel by Eric Puchner Full Book
  • pdf download Case File Compendium Bing An Ben Novel Vol. 1 by Rou Bao Bu Chi Rou
  • pdf download They Call Me Güero A Border Kids Poems by David Bowles
  • PDF DOWNLOAD Wake Up Nat Darcy by Kate Cochrane on Iphone
  • Online Read Ebook The Art of Joy A Novel by Goliarda Sapienza Anne Milano Appel Angelo Pellegrino
  • Download PDF The Day I Left You A Novel by Caroline Bishop
  • Download Pdf Oh Crap Potty Training Everything Modern Parents Need to Know to Do It Once and Do It R
  • PDF Harry Potter The Mini Book of Wands by Jody Revenson Monique Peterson
  • DOWNLOAD PDF EPUB The Murderbot Diaries Vol. 2 Rogue Protocol Exit Strategy by Martha Wells
  • The Art and Science of Sword Fighting A Complete Instructional Guide by Joe Varady on Ipad
  • Download PDF Doctor Sonnets Fantastic by John Teton
  • DOWNLOADS Brain Games - Puzzles for Mom More Than 170 Puzzles to Brighten Moms Day by Publications I
  • Download Pdf Lover Girl by Raegan Fordemwalt
  • PDF EPUB Download Plumbs Veterinary Drug Handbook by James A. Budde Dawn M. McCluskey Full Book
  • Read pdf Negotiation The Game Has Changed by Max H. Bazerman
  • Online Read Ebook Dandadan Vol. 9 by Yukinobu Tatsu
  • Download Pdf Wolf Creek Father and Wooing the Schoolmarm by Penny Richards Dorothy Clark
  • DOWNLOADS The Voices of Adriana by Elvira Navarro Christina MacSweeney
  • Presumed Guilty by Scott Turow on Ipad
  • Read online Spectregraph by James Tynion IV Christian Ward
  • Online Read Ebook Dreadnoughts The March of Progress by Michael Carroll John Higgins
  • Download PDF Learn WinUI 3 - Second Edition Leverage WinUI and the Windows App SDK to create modern
  • Read online Amy Winehouse Beyond Black by Naomi Parry
  • PDF Download Kapusta Vegetable-Forward Recipes from Eastern Europe by Alissa Timoshkina
  • PDF EPUB Download The Texas Murders A Texas Ranger Thriller by James Patterson Andrew Bourelle Full
  • Read online DARK MOON THE BLOOD ALTAR Vol. 1 comic by HYBE ENHYPEN Chana Conley
  • pdf download Windows Internals Part 2 Edition 7 by Mark Russinovich Andrea Allievi Alex Ionescu
  • DOWNLOAD PDF EPUB Beyond Anxiety Curiosity Creativity and Finding Your Lifes Purpose by Martha B
  • DOWNLOAD PDF EPUB Los nombres de Feliza Felizas Names by Juan Gabriel Vásquez
  • Happiness The Only True Prosperity by Osho on Iphone New Format
  • Download PDF Pilgrim A Theological Memoir by Tony Campolo Steve Rabey
  • Read Pdf Buy Back Your Time Get Unstuck Reclaim Your Freedom and Build Your Empire by Dan Martel
  • PDF The Paris Dancer The emotional and inspiring historical novel to look out for in 2025 by Nicola
  • My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David Musto on Ipad
  • PDF EPUB Download The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal N
  • PDF EPUB Download Harlequin Presents March 2025 - Box Set 1 of 2 by Caitlin Crews Abby Green Sha
  • PDF Download The Algebra of Wealth A Simple Formula for Financial Security by Scott Galloway
  • Read online Healing the Widowers Heart by Susan Anne Mason
  • DOWNLOAD PDF EPUB Are You There God Its Me In Menopause An Unfiltered Honest Guide to Midlife H
  • DOWNLOAD PDF EPUB The Pump House Gang by Tom Wolfe
  • PDF EPUB Download While the Duke Was Sleeping by Samara Parish Full Book
  • PDF Download Speaking of Crime The Language of Criminal Justice by Lawrence M. Solan Peter M. Tie
  • DOWNLOADS Oaths and Omissions Deluxe Edition by Sav R. Miller
  • Online Read Ebook The Hard Parts A Memoir of Courage and Triumph by Oksana Masters Cassidy Randall
  • download pdf The Very Hungry Caterpillars Animal Colors by Eric Carle
  • Read Pdf Leo A Benny Griessel Novel by Deon Meyer
  • Lost and Lassoed A Rebel Blue Ranch Novel by Lyla Sage on Audiobook New
  • Pdf ePub The Money Code Become a Millionaire with the Ancient Jewish Code by H. W. Charles download
  • Read online There Was an Old Lady Who Swallowed a Rainbow by Lucille Colandro Jared Lee
  • 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-13 01:03:20
Previous
Find pet by ID
Next
Update an existing pet
Built with