My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • {epub download} How Catholics Encounter the Bible by Michael Peppard
  • {epub download} Imperfect Solidarities by Aruna D'Souza
  • DOWNLOADS This Time It's Real by Ann Liang
  • [download pdf] Aria of the Beech Forest, Vol. 2 by Yugiri Aika, Yumi Tanaka
  • Heartbreak Love by Ricky Liorti on Audiobook New
  • DOWNLOAD [PDF] {EPUB} The Piece That Fits: Special Edition by N. J. Gray
  • [Pdf/ePub] Now I'm a Demon Lord! Happily Ever After with Monster Girls in My Dungeon: Volume 11 by Ryuyu, Daburyu, Kashi Kamitoma download ebook
  • Read [pdf]> The Worst Journey in the World, Volume 1: Making Our Easting Down: The Graphic Novel by Sarah Airriess
  • PDF [DOWNLOAD] Red Arrow across the Pacific: The Thirty-Second Infantry Division during World War II by Mark D. Van Ells on Iphone
  • Read online: Supercommunicators: How to Unlock the Secret Language of Connection by Charles Duhigg
  • PDF [DOWNLOAD] The Capital of Dreams: A Novel by Heather O'Neill on Iphone
  • Download PDF It Lasts Forever and Then It's Over by Anne de Marcken
  • Read [pdf]> Stop Thief!: Anarchism and Philosophy by Catherine Malabou, Carolyn Shread
  • Online Read Ebook Lectures 1949-1968, Volume 1: Music, Literature and the Arts by Theodor W. Adorno, Nicholas Walker
  • Read [pdf]> The Art of Octopath Traveler: 2016-2020 by Square Enix, NAOKI NAOKI
  • [PDF, EPUB] Download Orc Eroica, Vol. 4 (light novel): Conjecture Chronicles by Rifujin na Magonote, Asanagi, Evie Lund Full Book
  • DOWNLOADS Communication Systems Engineering with GNU Radio: A Hands-on Approach by Jean-Michel Friedt, Herve Boeglen
  • Download PDF The Saga of Sudden Sam: The Rise, Fall, and Redemption of Sam McDowell by Sam McDowell, Martin Gitlin, Steve Garvey
  • A New Lease on Death: A Mystery by Olivia Blacke on Ipad
  • [PDF, EPUB] Download Last Seen: The Enduring Search by Formerly Enslaved People to Find Their Lost Families by Judith Giesberg Full Book
  • Another Man's Poison: A George & Molly Palmer-Jones Novel by Ann Cleeves on Audiobook New
  • Read [pdf]> Beetlejuice Tarot Deck & Guide by Casey Gilly, Abigail Larson
  • Bolt Action: Armies of Germany: Third Edition by Warlord Games, Peter Dennis on Iphone New Format
  • Draw Like a Mangaka: The Complete Beginner's Guide to Learning to Draw Manga by Marcel Kuhn on Audiobook New
  • Online Read Ebook Being Jewish After the Destruction of Gaza: A Reckoning by Peter Beinart
  • [PDF, EPUB] Download The Trees Grew Because I Bled There: Collected Stories by Eric LaRocca Full Book
  • {pdf download} Just Eloise by Sophie Bernbaum
  • Memories of Distant Mountains: Illustrated Notebooks, 2009-2022 by Orhan Pamuk, Ekin Oklap on Ipad
  • PDF [Download] Burn Me Deadly by Alex Bledsoe
  • 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
Previous
PDF [Download] Burn Me Deadly by Alex Bledsoe
Next
Add a new pet to the store
Built with