My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOADS Lonely Planet Malta Gozo by Brett Atkinson
  • PDF Two Weddings and a Murder by Alyssa Maxwell
  • PDF DOWNLOAD Promchanted by Morgan Matson on Iphone
  • PDF Kindle The Minimalist-ish Journal Buy Less Live Better and Find Joy in What You Already Have
  • PDF Well Always Have Summer by Jenny Han
  • PDF DOWNLOAD Tuesdays Child by Fern Michaels on Iphone
  • PDF Kindle Sunrise on the Reaping A Hunger Games Novel by Suzanne Collins
  • Online Read Ebook Bake With Brooki by Brooke Bellamy
  • Pdf ePub Kingdom Keepers Inheritance The Final Draw Kingdom Keepers Inheritance Book 3 by Ridley Pe
  • Read Pdf Star Warriors A Starless Clan 6 by Erin Hunter
  • PDF DOWNLOAD Jugando fuerte The Rigth Move La Ciudad de los Vientos 2 by Liz Tomforde M Dolores Á
  • Read Pdf she followed the moon back to herself by Amanda Lovelace
  • Download PDF Orisha Volume 1 With Great Power by Huzayfa Umar Saturday AM
  • Online Read Ebook Their Hometown Christmas by Missy Tippens Lorraine Beatty
  • Download PDF Helgoland Making Sense of the Quantum Revolution by Carlo Rovelli Erica Segre Simon C
  • pdf download Franz Kafka The Drawings by Andreas Kilcher Pavel Schmidt Judith Butler Kurt Beals
  • epub download Murder in an Irish Garden by Carlene OConnor
  • Download PDF Falling for Gage by Mia Sheridan
  • Download PDF Tessas Pride by Olivia Brynn
  • DOWNLOAD PDF EPUB Pedal Pusher How One Womans Bicycle Adventure Helped Change the World by Mary Bo
  • Download PDF The Kabbalistic Tree by J. H. Chajes
  • Pdf ePub Parasyte Full Color Collection 6 by Hitoshi Iwaaki download ebook
  • download pdf On the Art and Craft of Doing Science by Kenneth Catania
  • Read pdf Caspar David Friedrich The Soul of Nature by Alison Hokanson Joanna Seidenstein Joseph
  • Read pdf The Vikings Bride by Darlene Mindrup
  • PDF EPUB Download Guarding the Witness by Laura Scott Heather Woodhaven Full Book
  • Read Pdf Victoria of Many Faces Vol. 1 manga by Syuu Andria McKnight Komo Ushino Nanna Fujimi
  • Download Pdf Island for Two Hawaii Magic Fiji Fantasy by Beverly Jenkins Elaine Overton
  • epub download The Art of the Line in Drawing A Step-by-Step Guide to Creating Simple Expressive Dra
  • PDF DOWNLOAD Why Are People Into That A Cultural Investigation of Kink by Tina Horn on Iphone
  • Download PDF La mujer de arriba The Wife Upstairs by Freida McFadden
  • Read Pdf The Message by Ta-Nehisi Coates
  • Pdf ePub The Housekeepers A Novel by Alex Hay download ebook
  • Read pdf Sweet Pea School Growing Arranging the Gardens Most Romantic Blooms by Marryn Mathis Ch
  • PDF Download The Night Is Defying A Nytefall Novel by Chloe C. Peñaranda
  • God of Ruin A Dark College Romance by Rina Kent on Iphone New Format
  • Download Pdf White Malice The CIA and the Covert Recolonization of Africa by Susan Williams
  • PDF The Naturalist Society by Carrie Vaughn
  • Online Read Ebook DAD The Copy Book by DAD
  • PDF DOWNLOAD Why Nothing Works Who Killed Progress-and How to Bring It Back by Marc J. Dunkelman o
  • Networking Essentials Companion Guide v3 Cisco Certified Support Technician CCST Networking 100-150
  • DOWNLOAD PDF EPUB A Little Gaelic Kingdom by Tim Robinson
  • PDF Download James en español by Percival Everett Javier Calvo
  • PDF Kindle I Want to Love You Till Your Dying Day 1 by Nachi Aono
  • No Longer Human by Junji Ito Osamu Dazai on Audiobook New
  • Download Pdf Shelterwood by Lisa Wingate
  • Read Pdf Were Pregnant The First Time Dads Pregnancy Handbook by Adrian Kulp
  • Online Read Ebook Stamped from the Beginning A Graphic History of Racist Ideas in America by Ibram X
  • Essentials Vol. 1 Bill Sienkiewicz Premiere Edition by Luke Arnold Chris Doc Wyatt on Ipad
  • Doctor Who The Official Guide by Doctor Who 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-10 22:58:10
Previous
Find pet by ID
Next
Update an existing pet
Built with