My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • TÉLÉCHARGEMENTS The Cashier Bundle
  • Lire en ligne The Players Obsession - Maine Megalodons Football Series 2
  • TÉLÉCHARGEMENTS Ptites bêtes du jardin
  • Télécharger PDF Ein Haus - Zwei Männer - Drei Frauen - ... und unzählige Kameras
  • Kindle Wicked Tome 1 téléchargement
  • PDF Kindle The Trainwreck - Beguiling a Billionaire 6 par Lark Anderson
  • PDF Power - Les 48 lois du pouvoir par Robert Greene Myra Bories Lakshmi Bories
  • télécharger pdf LArnaque des nouveaux pères - Enquête sur une révolution manquée
  • TÉLÉCHARGEMENTS Defeating Jihadist Terrorism
  • Pdf ePub Forstyr Forstoppelsen - Spring Lægen over bog nr 4 par Cassandra Øst téléchargement ebook
  • Kindle Nightshade Academy - Belladonna 1 téléchargement
  • Kindle Tomber luniforme Tome 4 téléchargement
  • Télécharger PDF Family Ties - The Conall Clan 2
  • Télécharger Pdf Cinderellas Billion-Dollar Invitation
  • Kindle Le royaume des damnés Tome 1 téléchargement
  • PDF Kindle Les meilleurs gâteaux de mamie pour grands et petits par Larousse
  • Télécharger PDF Ocean Eyes - Dir Verfallen
  • PDF Noël au royaume dUfrington - Tome 2 Ce qui nous réunit par Céline Musmeaux
  • PDF Le crochet en 180 points téléchargement
  • téléchargement pdf Décomplexée de la boucle
  • Lire en ligne Pauvre folle
  • Télécharger PDF Lieutenant Eve Dallas Tome 56
  • Kindle La coccinelle téléchargement
  • TÉLÉCHARGEMENTS Ma réputation
  • téléchargement epub Devils Order - Club Decadent Skies 2
  • Lire en ligne Une jeunesse au temps de la Shoah - Extraits dUne vie
  • Lire en ligne Silo
  • télécharger pdf Henri III - Un roi de tragédie
  • Télécharger Pdf Microsoft Outlook
  • PDF Les cités obscures par François Schuiten Benoît Peeters
  • TÉLÉCHARGER PDF EPUB The Deep Blue Tales The Oceanic Collective
  • TÉLÉCHARGEMENTS Goldman
  • Télécharger Pdf Conan o Bárbaro Terceira Parte - Conan o Bárbaro 3
  • PDF Crazy Boss par Raven Ster. Ling
  • PDF Dream Walker - Royal Council 2 par Ophelia Kee
  • PDF Kindle Sin Too - Sin 2 par S.J. Tilly
  • TÉLÉCHARGER PDF EPUB Heartstopper - Tome 5 - le roman graphique phénomène adapté sur Netflix
  • téléchargement pdf ما لا تبوح به النساء
  • PDF Alexandre VI Borgia par Jean-Yves Boriaud
  • Lecture en ligne Ebook Lart dapaiser son enfant - Pour quil retrouve force et confiance
  • TÉLÉCHARGER PDF EPUB The Power of Self-Control
  • PDF Pink Floyd par Pink Floyd téléchargement
  • téléchargement pdf Haunted Ever After
  • TÉLÉCHARGER PDF EPUB Réussir mon année avec Shayvise
  • Lire en ligne Tryst with Destiny Indias Post-Independence Journey
  • Lecture en ligne Ebook Inconsolable
  • téléchargement epub The Interview Masters Customer Service Manager - The Interview Masters
  • téléchargement epub Jacques Castermane ou la sagesse du corps - Zazen et enseignements
  • TÉLÉCHARGEMENTS The Playful Path how Imagination and Childlike Wonder Shape our Best Selves
  • PDF Empower Their Voices A Comprehensive Guide For Parents To Foster Swift Speech Development In Yo
  • 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 Empower Their Voices A Comprehensive Guide For Parents To Foster Swift Speech Development In Yo
Next
Add a new pet to the store
Built with