My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • The Ultimate Science Cookbook for Kids Over 75 Recipes Science Experiments for Kids A STEM Cookboo
  • Read pdf Kids Comics 101 Dalmatian Street D is for Dalmatians by The Disney Comics Group Steve Be
  • Download PDF Colorful Crochet Birds 19 Amigurumi Patterns to Create Feathered Friends by Ilaria Cali
  • Download PDF Liar Liar Vol. 1 manga by Funa Yukina Haruki Kuou konomi Kevin Gifford
  • Online Read Ebook Here One Moment by Liane Moriarty
  • Infinity Alchemist by Kacen Callender on Audiobook New
  • Pdf ePub Framed Drawing Techniques Mastering Ballpoint Pen Graphite Pencil and Digital Tools for
  • Read pdf El problema final by Arturo Pérez-Reverte
  • Download PDF The Amish Spinsters Courtship and Her New Amish Family by Emma Miller Carrie Lighte
  • epub download No B.S. Guide to Successful Marketing Automation The Ultimate No Holds Barred Guide to
  • Online Read Ebook The Seven Husbands of Evelyn Hugo A Novel by Taylor Jenkins Reid
  • epub download Well Always Have Summer by Jenny Han
  • Download PDF Exhala Exhale by Gaby Vargas
  • DOWNLOADS Something in the Walls A Novel by Daisy Pearce
  • DOWNLOAD PDF EPUB A Convenient Christmas Bride by Rhonda Gibson
  • download pdf Nancys Green and Easy Kitchen Delicious Everyday Meals by Nancy Birtwhistle
  • PDF EPUB Download Compañeros de piso The Roommate by Rosie Danan Full Book
  • The Bounty Hunters Redemption by Janet Dean on Audiobook New
  • The Hunting Moon by Susan Dennard on Ipad
  • PDF The Long Hair Handbook A How-To Guide for Long and Healthy Hair by Connie Kamilla
  • Download PDF Entropy Economics The Living Basis of Value and Production by James K. Galbraith Jing
  • Read online Eye Candy Girls English Edition by
  • DOWNLOAD PDF EPUB Who Can Afford to Be Critical An Inquiry into What We Cant Do Alone as Designer
  • PDF EPUB Download Star Wars The High Republic The Lightsaber Collection by Daniel Wallace Lukasz Li
  • PDF DOWNLOAD Werewolf Hamlet by Kerry Madden-Lunsford on Iphone
  • DOWNLOAD PDF EPUB The Other Valley A Novel by Scott Alexander Howard
  • Read Pdf Bosss Heir Demand by Jackie Ashenden
  • Download PDF The Mighty Marvel Dictionary An Illustrated Glossary from Avengers to X-Men by Robb Pea
  • PDF Download Cuando no queden más estrellas que contar by María Martínez
  • Download Pdf Brimstone Deluxe Limited Edition by Callie Hart
  • PDF EPUB Download Throne of the Fallen by Kerri Maniscalco Full Book
  • PDF DOWNLOAD Betrayal Road by Christine Feehan on Iphone
  • Read online Bad Boys Happy Home Vol. 2 by SHOOWA Hiromasa Okujima
  • Neighbors and Other Stories by Diane Oliver Tayari Jones on Iphone New Format
  • Pdf ePub Looking for You A Novel by Alexander McCall Smith download ebook
  • PDF Download Maria Theresa Empress The Making of the Austrian Enlightenment by Richard Bassett
  • PDF EPUB Download Multiamory Essential Tools for Modern Relationships by Jase Lindgren Dedeker Wi
  • Read pdf A to Z of The Designers Republic by Ian Anderson
  • 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-11 23:53:05
Previous
Find pet by ID
Next
Update an existing pet
Built with