My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Kindle Yours Truly by Abby Jimenez
  • Read online Rose in Chains by Julie Soto
  • How to Walk into a Room The Art of Knowing When to Stay and When to Walk Away by Emily P. Freeman on
  • PDF EPUB Download Bride Wanted by Renee Andrews Full Book
  • PDF EPUB Download Clydeo Takes a Bite Out of Life by Jennifer Aniston Bruno Jacob Full Book
  • PDF Download Were Pregnant The First Time Dads Pregnancy Handbook by Adrian Kulp
  • download pdf The Books of The Minor Prophets The Twelve The Passion Translation by Brian Simmons
  • PDF EPUB Download We Three Queens by Rhys Bowen Full Book
  • PDF Brimstone Deluxe Limited Edition by Callie Hart
  • PDF Download The Game Masters Book of Villains Minions and Their Tactics Epic new antagonists for
  • Download PDF Fearless by Lauren Roberts
  • Read pdf Look Up at The Moon by Karen Phillips Yuliana Simakovska
  • PDF Download Deadly Equation An AJ Docker and Banshee Thriller by Gary Gerlacher
  • pdf download Catherine the Princess of Wales A Biography of the Future Queen by Robert Jobson
  • DOWNLOAD PDF EPUB Understanding Palestine Israel by Phyllis Bennis Omar Baddar
  • Online Read Ebook Between Never and Forever by Shain Rose
  • DOWNLOAD PDF EPUB The Other Valley A Novel by Scott Alexander Howard
  • Creative Cyanotype Techniques and Inspiration by Angela Chalmers on Ipad
  • PDF EPUB Download The War of the Worlds by H. G. Wells Full Book
  • PDF EPUB Download Carrie 50 Aniversario Carrie 50th Anniversary Edition by Stephen King Full Boo
  • PDF Download DK Super Readers Level 1 Star Wars Princess Leias Adventures by DK Ruth Amos
  • PDF The Cul-de-sac by Christopher Null
  • PDF Lenswoman in Love a novel of the 1960s 70s by Kim R Gottlieb Walker
  • pdf download The Quiet Librarian A Novel by Allen Eskens
  • PDF EPUB Download Healing the Widowers Heart by Susan Anne Mason Full Book
  • download pdf Butterflies Bees Dragonflies Coloring Book Over 150 Pages of Natural Beauty to Color
  • Online Read Ebook CLAMP Premium Collection Tokyo Babylon Vol. 6 by Clamp Amanda Haley
  • pdf download Down to a Science by Kat Paige
  • Lightning Can Strike Twice My Life as a Fury by Tommy Fury on Ipad
  • Read Pdf My Life on the Mountain by Marion Brand
  • Read pdf Redeeming 6 Spanish Edition by Chloe Walsh
  • epub download The Diaries of Franz Kafka by Franz Kafka Ross Benjamin
  • PDF Kindle Twisted Games - Special Edition by Ana Huang
  • PDF Creep A Love Story by Emma van Straaten
  • PDF DOWNLOAD It Takes More Than a Pretty Face to Fall in Love Vol. 1 by Karin Anzai on Iphone
  • Read online The Amish Widows Secret by Cheryl Williford
  • Read pdf I Cross-Dressed for the IRL Meetup 3 by Kurano
  • Read Pdf The Villainess Turns the Hourglass Vol. 6 by Antstudio
  • pdf download Cherringham - A Fatal Illusion A Cosy Crime Series by Matthew Costello Neil Richards
  • Download Pdf A Proposal Worth Millions by Sophie Pembroke
  • DOWNLOADS When the Moon Hatched by Sarah A. Parker
  • PDF A Web of Obsidian The Obsidian Sisterhood 1 by Lydia M Hawke
  • download pdf Writing Jazz Conversations with Critics and Biographers by Sascha Feinstein
  • Read online Too Taboo An Erotic Romance Anthology by Amber Bardan Morgaine Cameron Amanda Stewart
  • Read online Handbook of Children and Screens Digital Media Development and Well-Being from Birth T
  • PDF DOWNLOAD On Close Reading by John Guillory Scott Newstok on Iphone
  • Oh the Places Youll Go by Dr. Seuss on Ipad
  • PDF The Alphas Son - SPECIAL EDITION by Penny Jessup
  • Online Read Ebook Well This Is Me A Cartoon Collection from the New Yorkers Asher Perlman by Asher
  • Rozando el cielo En el hockey y el amor todo vale Mile High by Liz Tomforde on Ipad
  • 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 01:11:45
Previous
Find pet by ID
Next
Update an existing pet
Built with