My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PUNISHER WELCOME BACK FRANK NEW PRINTING 2 by Garth Ennis Steve Dillon Tim Bradstreet on Ipad
  • PDF Kindle The Breakthrough Code A Story About Living A Life Without Limits by
  • pdf download Tears in the Danube by Nadine Nader
  • Prince of Montéz Pregnant Mistress by Sabrina Philips on Iphone New Format
  • Read Pdf Cross-Checked by Julia Connors
  • DOWNLOAD PDF EPUB Never Planned on You A Novel by Lindsay Hameroff
  • PDF Kindle A Beginners Guide to the Roots of Yoga How to create a more authentic practice by Nikita
  • DOWNLOAD PDF EPUB Taylor Swift and the Philosophy of Re-recording The Art of Taylors Versions by B
  • PDF EPUB Download Baphomet Revealed Mysteries and Magic of the Sacred Icon by Heather Lynn PhD Ful
  • PDF Woman at Point Zero by Nawal El Saadawi
  • download pdf The Exvangelicals Loving Living and Leaving the White Evangelical Church by Sarah Mc
  • PDF Kindle The Art of Spyro Reignited Trilogy by Micky Neilson
  • pdf download The Otherwhere Post by Emily J. Taylor
  • PDF EPUB Download SCARLET WITCH BY STEVE ORLANDO VOL. 4 QUEEN OF CHAOS by Steve Orlando Jacopo Ca
  • DOWNLOADS The Unexpected Duke by Julia Justiss
  • PDF DOWNLOAD Line and Wash in the Urban Landscape Sketching with watercolour and ink by Neil White
  • How to Win at Travel by Brian Kelly on Ipad
  • PDF The Rialto in Richmond The Money War Between the States Other Mysteries of the Civil War by Jo
  • DOWNLOADS The Art of Demon Slayer Kimetsu no Yaiba the Anime by ufotable Koyoharu Gotouge
  • Read Pdf The GHOST WHISKERERS by Thom Zahler Sandy King
  • download pdf I Got Abducted by Aliens and Now Im Trapped in a Rom-Com by Kimberly Lemming
  • Planeta by Ana Oncina on Audiobook New
  • DOWNLOADS Daughters of the Blue Moon by Millie Abecassis
  • PDF Kindle Afterlove by Tanya Byrne
  • Read online Alguien para mí Someone for Me by Juan Arcones Nagore Odriozola
  • PDF DOWNLOAD My Lesbian Experience With Loneliness Special Edition Hardcover by Nagata Kabi on Iph
  • PDF His Roommates Pleasure by Lana McGregor
  • Read online My Woman His Wife 20 Year Anniversary Edition by Anna J.
  • PDF Ive Been Killing Slimes for 300 Years and Maxed Out My Level Vol. 14 manga by Kisetsu Morita
  • DOWNLOAD PDF EPUB Frank Thornes Complete Iron Devil by Frank Thorne
  • PDF Download AP World History Modern Flashcards Sixth Edition by Barrons Educational Series Lorr
  • Pdf ePub Justice Love and Organizational Healing A Guide to Transformational Consulting by Ora C.
  • epub download Speaking of Crime The Language of Criminal Justice by Lawrence M. Solan Peter M. Tier
  • Read online Stereophonic by David Adjmi Will Butler
  • PDF Download Lawful Vol. 1 by Greg Pak Diego Galindo Irma Kniivila
  • 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
Modified at 2025-06-15 10:02:35
Previous
Deletes a pet
Built with