My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Apothecary Diaries Volume 3 Light Novel by Natsu Hyuuga Touko Shino Full Book
  • DOWNLOADS Hideaway A Novel by Hannah Alexander
  • DOWNLOAD PDF EPUB The Metabolism Makeover Workbook by Megan Hansen RDN
  • pdf download Frankenstein Signature Classics by Mary Shelley
  • PDF Kindle Love Inspired Suspense March 2025 - Box Set 2 of 2 by Terri Reed Kellie VanHorn Susan
  • Download PDF Sacred Places Sacred Teachings Following the Footsteps of the Buddha by Khenchen Konch
  • pdf download In Focus Auras Your Personal Guide by Joylina Goodings
  • DOWNLOAD PDF EPUB Lore Olympus Volume Seven by Rachel Smythe
  • Trinity Puglias Son by Steven Zizza on Iphone New Format
  • pdf download My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David Musto
  • Download PDF Falling for the Single Dad by Lisa Carter
  • download pdf Curio Citizen by Katherine Forrister
  • DOWNLOADS Treasury of the True Dharma Eye Dogens Shobogenzo Eight-Volume Set by Dogen Dogen Carl B
  • pdf download Sweet Pea School Growing Arranging the Gardens Most Romantic Blooms by Marryn Mathis
  • pdf download The Voices of Adriana by Elvira Navarro Christina MacSweeney
  • PDF EPUB Download The Lumberjacks Bride by Jean Kincaid Full Book
  • PDF Kindle Overshoot How the World Surrendered to Climate Breakdown by Andreas Malm Wim Carton
  • The Little Book of Tom. Blue Collar by Dian Hanson Tom of Finland on Audiobook New
  • PDF EPUB Download Límites saludables despedidas necesarias Ama a los demás sin perder lo mejor de
  • Download PDF Blood Over Bright Haven A Novel by M. L. Wang
  • A Convenient Christmas Bride and The Ranchers Christmas Proposal by Rhonda Gibson Sherri Shackelfor
  • DOWNLOAD PDF EPUB Building Modern CLI Applications in Go Develop next-level CLIs to improve user e
  • PDF Kindle An Unlikely Amish Match and An Amish Arrangement by Vannetta Chapman Jo Ann Brown
  • download pdf One-Night Crush by Mia Heintzelman
  • PDF Kindle Uzaki-chan Wants to Hang Out Vol. 12 by Take
  • pdf download How Isnt It Going Conversations After October 7 by Delphine Horvilleur Lisa Appignanes
  • PDF Kindle A Statin-Free Life by
  • epub download Winx Club 3 in 1 Vol. 1 by Rainbow S.p.A.
  • download pdf A Most Tolerant Little Town The Explosive Beginning of School Desegregation by Rachel
  • PDF EPUB Download Star Wars Dawn of the Jedi Into the Void by Tim Lebbon Full Book
  • Download PDF Antimatter Blues A Mickey7 Novel by Edward Ashton
  • pdf download Justine Cooks A Cookbook Recipes Mostly Plants for Finding Your Way in the Kitchen by J
  • DOWNLOAD PDF EPUB Out of Darkness by Alex Gray
  • Online Read Ebook All in the Family by Heather Graham
  • PDF EPUB Download The Restless Wave A Novel of the United States Navy by James Stavridis USN Full
  • DOWNLOADS Big Name Fan by Ruthie Knox Annie Mare
  • Read pdf What to Do When You Feel Broken How to Let Go of Negative Patterns Heal Your Relationshi
  • Online Read Ebook Anubis - Ancient Egypts Lord of Death and Protection by Charlie Larson Jason Mill
  • Read Pdf My Two Elaines Learning Coping and Surviving as an Alzheimers Caregiver by Martin J Sch
  • Read pdf The Black Curtain by Cornell Woolrich George Pelecanos
  • Read online Massive by John Trefry
  • PDF DOWNLOAD Out of the Cocoon The Journey to Becoming by Rosemary Esehagu on Iphone
  • Pdf ePub Harlequin Intrigue March 2025 - Box Set 1 of 2 by B. J. Daniels Julie Miller R. Barri Fl
  • DOWNLOAD PDF EPUB Silver Throat by Siri Pettersen Tara Chace
  • DOWNLOAD PDF EPUB Ride It Out by Jenna Jarvis
  • Read online A Tempest of Tea by Hafsah Faizal
  • Read online The Oceans of Cruelty Twenty-Five Tales of a Corpse-Spirit A Retelling by Douglas J. Pen
  • Read pdf The Crumbling of a Nation and other stories by Ryan David Ginsberg
  • Online Read Ebook Keeping His Promise An Uplifting Inspirational Romance by Linda Goodnight
  • Read Pdf Pursued by Death by Gunnar Staalesen Don Bartlett
  • 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-12 01:27:40
Previous
Read Pdf Pursued by Death by Gunnar Staalesen Don Bartlett
Next
Add a new pet to the store
Built with