My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf Booster Shots The Urgent Lessons of Measles and the Uncertain Future of Childrens Heal
  • Online Read Ebook Warriors Changing Skies 1 The Elders Quest by Erin Hunter
  • PDF Kindle Family on the Range by Jessica Nelson
  • Download PDF Today Tonight Tomorrow by Rachel Lynn Solomon
  • Online Read Ebook After-Hours Proposal by Trish Morey
  • PDF EPUB Download My Boyfriend is a Dog Vol. 2 by kadiro Full Book
  • The Amish Marriage Bargain and Finding Her Amish Love by Marie E. Bast Rebecca Kertz on Ipad
  • Read pdf Amor en juego The Long Game by Elena Armas
  • download pdf The Complete Nonsense Books De-luxe Edition by Edward Lear
  • PDF Download The Perfect Loaf The Craft and Science of Sourdough Breads Sweets and More A Baking
  • The Art of Lies of P by NEOWIZ ROUND8 Studio on Ipad
  • download pdf The Girl Most Likely To A Novel by Julie Tieu
  • PDF EPUB Download Scent of Peril A Christian Romantic Suspense by Laura Scott Full Book
  • PDF EPUB Download The Reluctant Guardian by Susanne Dietze Full Book
  • Christmaker A Life of John the Baptist by James F. McGrath on Iphone New Format
  • Read pdf The Margraves Daughter the Enemy Prince Volume 1 by An Ogura
  • Download PDF The Quiet Librarian A Novel by Allen Eskens
  • PDF His Roommates Pleasure by Lana McGregor
  • PDF Download I Havent Been Entirely Honest with You by Miranda Hart
  • DOWNLOAD PDF EPUB My Side of the River A Memoir by Elizabeth Camarillo Gutierrez
  • download pdf Be a Revolution How Everyday People Are Fighting Oppression and Changing the World-and
  • Download PDF The Duchess The Scandalous Ladies of London by Sophie Jordan
  • epub download The Trials and Tribulations of My Next Life as a Noblewoman Volume 1 by Kamihara Shir
  • Pdf ePub An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Brown downloa
  • PDF Download Lights Cowboy Action by Lesley Ann McDaniel
  • DOWNLOAD PDF EPUB Zodiac Rising by Katie Zhao
  • PDF Funny Story by Emily Henry
  • PDF Daddy Wanted by Renee Andrews
  • Read Pdf VENOM BY AL EWING VOL. 8 VENOM WAR by Al Ewing Torunn Gronbekk Cafu
  • PDF Download Three Grumpy Groomsmen by Emma Foxx
  • Read pdf How to Build a Fashion Icon Notes on Confidence from the Worlds Only Image Architect by L
  • DOWNLOAD PDF EPUB Dress Up Harry A Harry Styles Paper Doll Book Featuring His Most Iconic Looks by
  • PDF Never After The End of the Story by Melissa de la Cruz
  • DOWNLOAD PDF EPUB Donde viven las musas Land of Muses by Marianela Dos Santos
  • PDF The Peacemaker by Wanda E. Brunstetter
  • Download Pdf Monsters Aliens and Holes in the Ground Deluxe Edition A Guide to Tabletop Roleplayi
  • Read online Winter Holly A Christian book with poems of faith. by James J Tong
  • epub download Cabana Anthology The Anniversary Edition by Martina Mondadori
  • download pdf Her Holiday Lawman by Ruth Logan Herne Mindy Obenhaus
  • Winning His Manhattan Heiress by Lauri Robinson on Ipad
  • Online Read Ebook Oaths and Omissions Deluxe Edition by Sav R. Miller
  • The Viscounts Unconventional Lady A Steamy Historical Romance Book by Virginia Heath on Ipad
  • pdf download The Swans of Harlem Five Black Ballerinas Fifty Years of Sisterhood and Their Reclama
  • DOWNLOADS Over The Limit by K. Bromberg
  • PDF EPUB Download Imposible decir adiós We Do Not Part by Han Kang Full Book
  • DOWNLOAD PDF EPUB Moving Targets by Lynn Shannon Heather Woodhaven
  • The Dark Ascension Series The Wishless Ones by Hafsah Faizal on Iphone New Format
  • PDF EPUB Download The Grand Prix Year An Insiders Guide to Formula 1 Racing by Phillip Horton Full
  • Download Pdf Presidents at War How World War II Shaped a Generation of Presidents from Eisenhower a
  • Read pdf Azula in the Spirit Temple Avatar The Last Airbender by Faith Erin Hicks Peter Wartman
  • 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-15 23:23:15
Previous
Find pet by ID
Next
Update an existing pet
Built with