My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Vulkan Lord of Drakes by David Annandale
  • Read Pdf Faefever by Karen Marie Moning
  • PDF EPUB Download Kapusta Vegetable-Forward Recipes from Eastern Europe by Alissa Timoshkina Full
  • PDF EPUB Download Made for More by Chloe Ito Ward Gael Abary Full Book
  • epub download First Comes Marriage by Laila Rafi
  • Kent State Four Dead in Ohio by Derf Backderf on Audiobook New
  • PDF DOWNLOAD Golden State The Making of California by Michael Hiltzik on Iphone
  • Read Pdf Wool Collectors Edition Book One of the Silo Series by Hugh Howey
  • PDF Heartless Hunter The Crimson Moth Book 1 by Kristen Ciccarelli
  • Melvill by Rodrigo Fresán Will Vanderhyden on Iphone New Format
  • epub download Pure Excess Capitalism and the Commodity by Todd McGowan
  • Download PDF Mornings Without Mii by Mayumi Inaba Ginny Tapley Takemori
  • Greeks Convenient Cinderella A Steamy Marriage of Convenience Story by Lynne Graham on Audiobook New
  • PDF DOWNLOAD Fitzpatricks Color Atlas and Synopsis of Clinical Dermatology Ninth Edition by Ellen
  • Bye Forever I Guess by Jodi Meadows on Iphone New Format
  • pdf download Pseudoscience An Amusing History of Crackpot Ideas and Why We Love Them by Lydia Kang M
  • PDF DOWNLOAD Japandi Serene homes and thoughtful living by Laila Rietbergen Marlous Snijder on Ip
  • Online Read Ebook Light Warriors A Heavenly Strategy for Spiritual Warfare by Joshua Mills Katie So
  • DOWNLOAD PDF EPUB The Shiunji Family Children Vol. 3 by Reiji Miyajima Reiji Yukino Kevin Giffo
  • DOWNLOAD PDF EPUB Blackmailed into the Marriage Bed by Melanie Milburne
  • My Mechanical Romance by Alexene Farol Follmuth on Ipad
  • Read Pdf Drawing the Body Reading the Human Form in Art by Roberto Osti
  • Download Pdf JK Haru is a Sex Worker in Another World Manga Vol. 7 by Ko Hiratori J-ta Yamada
  • epub download Star Trek Vol. 3 Glass and Bone by Collin Kelly Jackson Lanzing Marcus To
  • Sun Ssukgat The Korean Art of Self-Care Wellness Longevity by Michelle Jungmin Bang on Audiobook
  • DOWNLOAD PDF EPUB Gregs Tagebuch 13 - Eiskalt erwischt by Jeff Kinney Dietmar Schmidt
  • Read Pdf Never Flinch A Novel by Stephen King
  • PDF EPUB Download Mail-Order Mistletoe Brides Christmas Hearts Mistletoe Kiss in Dry Creek by Jill
  • Read online Grimms Fairy Tales by Wilhelm Grimm
  • Read pdf Space Piracy Preparing for a Criminal Crisis in Orbit by Marc Feldman Hugh Taylor Eric
  • Read online 86--Eighty-Six Vol. 11 light novel Dies Passionis by Asato Asato Shirabii
  • PDF Download Magnolia Parks Into the Dark by Jessa Hastings
  • Teenage Mutant Ninja Turtles The Mirage Years 1993-1995 by Jim Lawson on Ipad
  • PDF Kindle Every Last Breath by Jennifer L. Armentrout
  • PDF Kindle Cold as Hell A Havens Rock Novel by Kelley Armstrong
  • 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

Find pet by ID

GET
/pet/{petId}
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/1'
Response Response Example
200 - Success 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

Path Params
petId
string 
required
pet ID
Example:
1

Responses

🟢200OK
application/json
Body
code
integer 
required
status code
>= 0<= 0
data
object (Pet) 
required
pet details
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
🟠404Record not found
🟠400Invalid input
Modified at 2025-06-09 01:38:05
Previous
PDF Kindle Cold as Hell A Havens Rock Novel by Kelley Armstrong
Next
Add a new pet to the store
Built with