My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf Sally Face Art Lore and More by Steve Gabry
  • PDF Download Doctor Who Wild Blue Yonder Target Collection by Mark Morris
  • PDF EPUB Download Ever Mine by Laura Pavlov Full Book
  • PDF Smart Girls Guide to Drama Rumors and Secrets Staying True to Yourself in Changing Times by Na
  • Wargaming Campaigns by Henry Hyde on Iphone New Format
  • download pdf One Night with the Best Man by Amanda Berry
  • PDF EPUB Download Baseball Card Price Guide 47 by Beckett Media Full Book
  • DOWNLOAD PDF EPUB The Art of the Line in Drawing A Step-by-Step Guide to Creating Simple Expressi
  • PDF Download The Undead Fox of Deadwood Forest by Aubrey Hartman
  • PDF EPUB Download I Hate Fairyland Book Three by Skottie Young Brett Bean Full Book
  • The Nativity Story by Juliet David Jo Parry on Ipad
  • PDF Kindle Expiration Dates A Novel by Rebecca Serle
  • Tied to You Vol. 4 by WHAT Micah Kim on Iphone New Format
  • PDF Download Fresh Fruit Broken Bodies Migrant Farmworkers in the United States Updated with a N
  • You Are The Brand The 8-Step Blueprint to Showcase Your Unique Expertise and Build a Highly Profitab
  • PDF EPUB Download Yuletide Hearts and Reunited at Christmas by Ruth Logan Herne Belle Calhoune Fu
  • PDF Kindle Wandering Witch The Journey of Elaina Vol. 14 light novel by Jougi Shiraishi Azure Ni
  • pdf download Rebel Witch The Crimson Moth Book 2 by Kristen Ciccarelli
  • About Time by Neil Hilborn on Iphone New Format
  • SECRET WARS BATTLEWORLD OMNIBUS VOL. 1 JIM CHEUNG COVER by Marvel Various on Iphone New Format
  • Read Pdf A Fortunes Redemption by Stella Bagwell
  • Read online The Ultimate Science Cookbook for Kids Over 75 Recipes Science Experiments for Kids A
  • The Marshals Mission by Anna Zogg on Ipad
  • epub download Surrounded by Liars How to Stop Half-Truths Deception and Gaslighting from Ruining Y
  • epub download To Sicily with Love by Jennifer Probst
  • Journey Mirror A Journal of Inner Love Kindness and Authenticity by Tia Blue Burrell K. B. Whitake
  • download pdf Star Wars The High Republic The Lightsaber Collection by Daniel Wallace Lukasz Liszko
  • Winning His Manhattan Heiress by Lauri Robinson on Audiobook New
  • Why We Remember Unlocking Memorys Power to Hold on to What Matters by Charan Ranganath PhD on Ipad
  • PDF EPUB Download The Boy Who Ruled the Monsters Volume 2 by Sin Guilty NAKAMURA 8 Kamishiro Taish
  • PDF Jackson Pollock The Early Years 19341947 by Joanne Snrech Orane Stalpers Cécile Debray Ruben
  • Read online Eelfish a Rock Roll King by Liz Salton
  • PDF Keeping His Promise An Uplifting Inspirational Romance by Linda Goodnight
  • Fall of Ruin and Wrath by Jennifer L. Armentrout on Iphone New Format
  • Download Pdf Redeeming 6 by Chloe Walsh
  • PDF DOWNLOAD The 12 Miracles of Life The Science of Success by Napoleon Hill Don M. Green on Ipho
  • pdf download Les Normaux A Graphic Novel by Janine Janssen S. Al Sabado
  • pdf download Creating Your Own Economy A Guide to Financial Freedom and Generous Living by Dave Mart
  • pdf download Jimi Hendrix - The Complete Scores by Jimi Hendrix
  • Read pdf Asterix Omnibus Vol. 13 by Jean-Yves Ferri Didier Conrad
  • pdf download Sito An American Teenager and the City that Failed Him by Laurence Ralph
  • PDF EPUB Download Formula 2 The glory years 1967-84 by Jutta Fausel Chris Witty Jacky Ickx Full
  • Fox Is Coming by James Patterson Joe Kulka on Audiobook New
  • Pdf ePub New York Times Games Classic Crossword Puzzles Red and White 100 Puzzles Edited by Will Sh
  • Read Pdf Ilium A Novel by Lea Carpenter
  • Read online Wicked Pursuit Divine Intervention Deluxe Edition by Katee Robert R.M. Virtues
  • Its Hard for Me to Live with Me A Memoir by Rex Chapman Seth Davis on Audiobook New
  • PDF EPUB Download Reflections of an Invisible Duck by Geigan C. Locke Full Book
  • Pdf ePub Sweetpea by C. J. Skuse download ebook
  • Online Read Ebook Malaparte A Biography by Maurizio Serra Stephen Twilley
  • 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-09 23:43:15
Previous
Find pet by ID
Next
Update an existing pet
Built with