My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online Dungeons Dragons Worlds Realms Adventures from Greyhawk to Faerûn and Beyond by Adam L
  • PDF Kindle Tristan and Lancelot A Tale of Two Knights by James Persichetti L.S. Biehler
  • The Effect An Introduction to Research Design and Causality by on Ipad
  • PDF Download The Narrative Brain The Stories Our Neurons Tell by Fritz Alwin Breithaupt Ph.D.
  • PDF EPUB Download Shiver by Maggie Stiefvater Full Book
  • Seasons of the Witch - Ostara Oracle by Lorriane Anderson Tijana Lucovic Juliet Diaz on Ipad
  • Download Pdf Sonic the Hedgehog The Official Cookbook by Victoria Rosenthal Ian Flynn
  • DOWNLOAD PDF EPUB It Takes More Than a Pretty Face to Fall in Love Vol. 1 by Karin Anzai
  • DOWNLOAD PDF EPUB TSF Monogatari by Shindo L
  • PDF DOWNLOAD Strength and Valor by Mary Ellen Porter Becky Avella on Iphone
  • epub download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang
  • DOWNLOADS Every Fall by Angela Douglas
  • Download PDF InvestiGators Agents of S.U.I.T. Wild Ghost Chase by John Patrick Green
  • PDF Kindle Pesadilla en Navidad by Tessa Bailey
  • DOWNLOAD PDF EPUB The Christmas Strike by Nikki Rivers
  • Read Pdf Touch Me by Callie Croix
  • download pdf The Crumbling of a Nation and other stories by Ryan David Ginsberg
  • PDF DOWNLOAD Greenteeth by Molly ONeill on Iphone
  • PDF EPUB Download Chastity and the Soul You Are Holy Ground by Ronald Rolheiser Full Book
  • PDF EPUB Download Hollywood Hearts by Toni Logan Full Book
  • DOWNLOADS The Evolution of Claire Jurassic World by Tess Sharpe Random House
  • DOWNLOADS A Day at the Post Office by Theonesse Cheon
  • Read online DARK MOON THE BLOOD ALTAR Vol. 2 comic by HYBE ENHYPEN
  • PDF Winning His Manhattan Heiress by Lauri Robinson
  • PDF EPUB Download Golden State The Making of California by Michael Hiltzik Full Book
  • DOWNLOAD PDF EPUB The Pucking Proposal by Lauren Landish
  • PDF Pathfinder RPG Guns Gears Remastered P2 by Michael Sayre Mark Seifter Logan Bonner Jessica
  • PDF Haiku Americana by Lawrence Eyre
  • Read Pdf The Afternoon of Christianity The Courage to Change by Tomás Halík Gerald Turner
  • Read pdf Meditation for the Real World Finding Peace in Everyday Life by Ann Swanson Michelle Mil
  • epub download Talk The Science of Conversation and the Art of Being Ourselves by Alison Wood Brooks
  • Online Read Ebook Diary of an 8-Bit Warrior Shadow Over Aetheria by Cube Kid
  • Online Read Ebook Suddenly Daddy and Suddenly Mommy by Loree Lough
  • Read Pdf Magnolia Parks by Jessa Hastings
  • DOWNLOAD PDF EPUB Bernie Wrightsons Frankenstein by Mary Shelley
  • PDF EPUB Download Yandere Dark Elf She Chased Me All the Way From Another World Vol. 2 by Nakanoso
  • The Parent Plan Part 2 by Paula Detmer Riggs on Iphone New Format
  • Read Pdf Still Water by Chris Priestley
  • Read online Sharing Body Heat by Lexie Davis
  • The Girl Most Likely To A Novel by Julie Tieu on Audiobook New
  • PDF The Lady in Glass and Other Stories by Anne Bishop
  • La invención de todas las cosas The Invention of All Things by Jorge Volpi on Ipad
  • PDF EPUB Download We Used to Live Here A Novel by Marcus Kliewer Full Book
  • Download Pdf How to Draw Super Cute Things with Bobbie Goods Learn to draw color absolutely adorabl
  • DOWNLOADS The Secret of Secrets by Dan Brown
  • Online Read Ebook Draw Like a Mangaka The Complete Beginners Guide to Learning to Draw Manga by Marc
  • PDF Kindle Go Ahead in the Rain Notes to A Tribe Called Quest by Hanif Abdurraqib
  • Things I Wanted To Say by Monica Murphy on Iphone New Format
  • Download Pdf 3D Scroll Saw Projects 35 Fun Compound-Cut Projects More Than 150 Patterns by Diana L.
  • Download Pdf GMAT Official Guide 2024-2025 Book Online Question Bank by GMAC Graduate Management Ad
  • 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-10 23:33:25
Previous
Find pet by ID
Next
Update an existing pet
Built with