My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • pdf download Journey Mirror A Journal of Inner Love Kindness and Authenticity by Tia Blue Burrell
  • Download Pdf Shallow River by H. D. Carlton
  • Download Pdf La mujer de arriba by Freida McFadden Carlos Abreu Fetter
  • PDF Download LatinoLand A Portrait of Americas Largest and Least Understood Minority by Marie Aran
  • Redeemer Gods Lovingkindness in the Book of Ruth--A 6-Week Bible Study with Video Access by Dorina L
  • Pdf ePub Crypt Life Death and Disease in the Middle Ages and Beyond by Alice Roberts download eboo
  • PDF Download A Dark and Drowning Tide A Novel by Allison Saft
  • epub download The Conspiracy Tourist by Dom Joly
  • download pdf Beyond Darning Creative mending techniques by Hikaru Noguchi
  • PDF EPUB Download Katabasis Deluxe Limited Edition A Novel by R. F. Kuang Full Book
  • DOWNLOAD PDF EPUB The Personal MBA 10th Anniversary Edition by Josh Kaufman
  • Download PDF From Trenton to Yorktown Turning Points of the Revolutionary War by John R. Maass
  • The Official Harry Potter Baking and Cookbook Collection by Joanna Farrow on Ipad
  • The Future of Geography How the Competition in Space Will Change Our World by Tim Marshall on Ipad
  • pdf download Gleanings Stories from the Arc of a Scythe by Neal Shusterman
  • Download PDF Last Night at the Telegraph Club National Book Award Winner by
  • Engaged in Deception by Kim Lawrence on Iphone New Format
  • download pdf Panic Playhouse by Remy Oliver
  • A Witchs Guide to Fetch Work Rituals Spells Practices by Blake Malliway on Iphone New Format
  • Download Pdf The Order of the Circle by Levi Cory Anna Kubik Elisabeth Mkheidze
  • DOWNLOAD PDF EPUB Our Plastic Problem A Call for Global Solutions by Megan Durnford
  • PDF Steven Universe End of an Era by Chris McDonnell N. K. Jemisin
  • PDF Assassins Creed Atlas by
  • Online Read Ebook Lore by Alexandra Bracken
  • Read online Scourge of the Emirates by Peter J. Murray
  • DOWNLOADS Arctic Wild A Spicy Gay Age Gap Romance by Annabeth Albert
  • download pdf The Dark Coil Damnation by Peter Fehervari
  • DOWNLOAD PDF EPUB Robert Kuok A Memoir by Andrew Tanzer
  • Online Read Ebook Frontier Agreement by Shannon Farrington
  • Download PDF Pony Express Courtship and The Express Riders Lady by Rhonda Gibson Stacy Henrie
  • PDF EPUB Download When Short Stories by Rhonda Baule Full Book
  • PDF EPUB Download Monsieur Pain by Roberto Bolaño Chris Andrews Full Book
  • epub download House of Flame and Shadow by Sarah J. Maas
  • download pdf Son of Southtown My Life Between Two Worlds by Sonny Sandoval Jon Foreman
  • PDF Download The Paris Muse by Louisa Treger
  • DOWNLOAD PDF EPUB I Will Do Better A Fathers Memoir of Heartbreak Parenting and Love by Charles
  • PDF Download Super Beast 96 by Lawler
  • PDF EPUB Download Leviathan by Robert McCammon Full Book
  • Online Read Ebook Wild Roses and Pretenders Vol. 2 by Kamoburger
  • Read online Cute Fantasy Art Class Mystical Anime Besties - Learn to Draw over 50 Charming Character
  • Summer in the City by Alex Aster on Ipad
  • download pdf The Italian Bakery Step-by-Step Recipes with the Silver Spoon by The Silver Spoon Kitc
  • Seeds of Shadow and Soil by Edgar J Wilde on Ipad
  • PDF Download The Crimson Crown by Heather Walter
  • DOWNLOAD PDF EPUB Harlequin Heartwarming March 2025 Box Set A Clean and Uplifting Romance by Alexi
  • Read pdf The Psychology of Fashion by Carolyn Mair
  • PDF EPUB Download Twisted 1. Twisted love by Ana Huang Full Book
  • Download PDF The Mortal Instruments The Graphic Novel Vol. 5 by Cassandra Clare Cassandra Jean
  • Read Pdf Essentials Vol. 1 Bill Sienkiewicz Premiere Edition by Luke Arnold Chris Doc Wyatt
  • DOWNLOAD PDF EPUB Heart of the Shadow King by Sylvia Mercedes
  • 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

Finds Pets by status

GET
/pet/findByStatus
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/findByStatus?status'
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"
        },
        {
            "name": "White Dog",
            "photoUrls": [
                "http://dummyimage.com/400x400"
            ],
            "id": 3,
            "category": {
                "id": 71,
                "name": "Dog"
            },
            "tags": [
                {
                    "id": 22,
                    "name": "Dog"
                }
            ],
            "status": "sold"
        }
    ]
}

Request

Query Params
status
string 
required
Status values that need to be considered for filter

Responses

🟢200OK
application/json
Body
array of:
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
id
integer <int64>
optional
Category ID
>= 1
name
string 
optional
Category Name
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
id
integer <int64>
optional
Tag ID
>= 1
name
string 
optional
Tag Name
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
🟠400Invalid status value
Previous
Deletes a pet
Built with