My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read online The Art of Marvels Spider-Man 2 Deluxe Edition by Insomniac Games
  • PDF DOWNLOAD Fail-Safe Investing Lifelong Financial Security in 30 Minutes by Harry Browne on Ipho
  • pdf download Before We Forget Kindness by Toshikazu Kawaguchi
  • Download PDF Tsalmoth by Steven Brust
  • Drawing Attention Custom Illustration Solutions for Brands Today by on Iphone New Format
  • Download Pdf Hospitalidad irracional El poder de dar más de lo que se espera de ti by Will Guidara
  • Read Pdf Birth Canal by Dias Novita Wuri
  • Portraits with Procreate A Beginners Guide to Drawing and Painting Faces by Melissa De Nobrega on Ip
  • PDF Download Tell Me What You Did A Novel by Carter Wilson
  • PDF EPUB Download The Overactive Mind Turning Anxiety into Strength by Andrew Espinosa Full Book
  • Download Pdf Oh the Places Youll Go by Dr. Seuss
  • epub download My Solo Exchange Diary Vol. 1 The Sequel to My Lesbian Experience With Loneliness by N
  • Pdf ePub Sing Backwards and Weep A Memoir by Mark Lanegan download ebook
  • DOWNLOADS Storm and Fury by Jennifer L. Armentrout
  • Read online The Perfect Sacrifice by Abbi Gore Spivey
  • PDF Baseball Card Price Guide 47 by Beckett Media
  • DOWNLOAD PDF EPUB Conflict in the Holy Land From Ancient Times to the Arab-Israeli Conflicts by Ro
  • Read Pdf Legends and Soles The Memoir of an American Original by Sonny Vaccaro Armen Keteyian
  • ENNEAD Vol. 2 Mature Hardcover by Mojito on Audiobook New
  • DOWNLOAD PDF EPUB Victoria of Many Faces Vol. 1 manga by Syuu Andria McKnight Komo Ushino Nann
  • PDF DOWNLOAD Grimoire Girl A Memoir of Magic and Mischief by Hilarie Burton Morgan on Iphone
  • Download Pdf Disney The Art of Moana 2 by Kalikolehua Hurley Jennifer Lee David Derrick Jr. Jason
  • Read pdf Body Parts A Serial Killers Deadly Compulsions by Caitlin Rother
  • pdf download The Exvangelicals Loving Living and Leaving the White Evangelical Church by Sarah McC
  • PDF EPUB Download Pseudoscience An Amusing History of Crackpot Ideas and Why We Love Them by Lydia K
  • PDF EPUB Download Boy Vs. Beast 2 Rock Beast by Mac Park Full Book
  • Read online Wires and Nerve Volume 2 Gone Rogue by Marissa Meyer Stephen Gilpin
  • epub download Catching a Hacker by Maggie Wells
  • PDF Kindle Italian Wines 2025 by Gambero Rosso
  • Garts Thought Awesome Edition by Gart Octavius Riot on Iphone New Format
  • Universal Principles of Color 100 Key Concepts for Understanding Analyzing and Working with Color
  • download pdf The Shadows Rule All by Abigail Owen
  • Download PDF Lucha of the Forgotten Spring by Tehlor Kay Mejia
  • Download PDF The Metabolism Makeover Workbook by Megan Hansen RDN
  • PDF Download New York Times Games Crossword Curious for the Novice Solver 200 Easy Crosswords by T
  • DOWNLOADS Toiveiden lapset by Danielle Steel Kaisa Luntinen
  • American Cosmic UFOs Religion Technology by D.W. Pasulka on Audiobook New
  • download pdf Barley Patch by Gerald Murnane
  • DOWNLOADS In Sunshine or in Shadow A Molly Murphy Mystery by Rhys Bowen Clare Broyles
  • Talking at Night A Novel by Claire Daverley on Audiobook New
  • Pdf ePub The Lost Traveler by Sanora Babb download ebook
  • Where Is My Brother A familys journey through grief and loss by Sean Edward Fox Quinten Gaer on Aud
  • A Certain Scientific Railgun Vol. 19 by Kazuma Kamachi Motoi Fuyukawa on Iphone New Format
  • Download PDF The Last Dangerous Visions by Harlan Ellison J. Michael Straczynski Max Brooks James
  • pdf download Murder Rewind Death at Blockbuster Minute Mysteries Set in the 1990s by S. K. Doyle
  • DOWNLOADS The Ice Guy and the Cool Girl 09 by Miyuki Tonogaya
  • PDF EPUB Download Its Now or Nether Minecraft Ironsword Academy 2 by Caleb Zane Huett Full Book
  • Read Pdf Everything You Need to Ace Science in One Big Fat Notebook The Complete Middle School Stu
  • PDF EPUB Download My Instant Death Ability Is So Overpowered No One in This Other World Stands a Ch
  • The Art of Lies of P by NEOWIZ ROUND8 Studio on Ipad
  • 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