My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • epub download The Other Side A Story of Women in Art and the Spirit World by Jennifer Higgie
  • Princeton Review Digital SAT Premium Prep 2025 5 Full-Length Practice Tests 2 in Book 3 Adaptive T
  • Read pdf The Borrow a Boyfriend Club by Page Powars
  • Flower Color Theory by Darroch Putnam Michael Putnam on Iphone New Format
  • Read Pdf Drawing People 100 Prompts Projects and Playful Exercises by Viktorija Semjonova
  • PDF DOWNLOAD The Inconvenient Life of an Arousing Priestess Volume 1 by Yamato Fujimine Makino M
  • Read Pdf A Knock at the Door A homeless man a lawyer . . . and a family changed forever by Rob Pa
  • Read pdf Sharing Body Heat by Lexie Davis
  • Read Pdf We Are Made of Stars A Novel by Rochelle B. Weinstein
  • Online Read Ebook Beautiful Ugly A Novel by Alice Feeney
  • DOWNLOAD PDF EPUB How to Get Along with Anyone The Playbook for Predicting and Preventing Conflict
  • Defeating the Giant A Guide to Recognizing and Healing from Narcissistic Abuse by Rosanne Nunnery on
  • Read pdf The Beauty of Horror Haunted Holidays Coloring Book by Alan Robert
  • DOWNLOAD PDF EPUB One of Us Is Lying Series Paperback Boxed Set One of Us Is Lying One of Us Is Ne
  • PDF Danganronpa 2 Chiaki Nanamis Goodbye Despair Quest Volume 2 by Karin Suzuragi Spike Chunsoft
  • PDF EPUB Download A Day at the Post Office by Theonesse Cheon Full Book
  • PDF Download Creating Your Own Economy A Guide to Financial Freedom and Generous Living by Dave Ma
  • DOWNLOAD PDF EPUB Atomic Habits An Easy Proven Way to Build Good Habits Break Bad Ones by James
  • PDF Associate Professor Akira Takatsukis Conjecture Vol. 5 manga by Mikage Sawamura Toji Aio
  • Read online The Triathletes Training Bible The Worlds Most Comprehensive Training Guide 5th Edition
  • PDF Kindle Pierre Soulages From Midnight to Twilight by Pierre Soulages Annie Godfrey Larmon Alfr
  • PDF EPUB Download Queer as Folklore The Hidden Queer History of Myths and Monsters by Sacha Coward
  • Read online A Pickle for the Knowing Ones by Timothy Dexter
  • epub download The Great When A Long London Novel by Alan Moore
  • The Cul-de-sac by Christopher Null on Ipad
  • Read Pdf The Vulnerables A Novel by Sigrid Nunez
  • Read pdf Stream Big The Triumphs and Turmoils of Twitch and the Stars Behind the Screen by Nathan
  • pdf download Say Youll Remember Me by Abby Jimenez
  • Read pdf Casualties of Truth by Lauren Francis-Sharma
  • PDF Kindle The Capitalist Manifesto by Johan Norberg
  • PDF Kindle Brutal Prince Illustrated Edition by Sophie Lark
  • download pdf Killer in Shellview County by R. Barri Flowers
  • Download Pdf Walt Disneys Uncle Scrooge The Diamond Jubilee Collection by Carl Barks
  • PDF Fiancée No More The Forsaken Lady the Prince and Their Make-Believe Love Volume 3 by Mari Mor
  • Bits and Pieces My Mother My Brother and Me by Whoopi Goldberg on Ipad
  • The Art of Mac Malware Volume 2 Detecting Malicious Software by Patrick Wardle on Iphone New Format
  • The Art of Ready Player One by Gina McIntyre Ernest Cline Steven Spielberg on Audiobook New
  • PDF DOWNLOAD Fated Winds and Promising Seas A tender-hearted tale of forging fates fantastic crea
  • PDF Kindle One Day Everyone Will Have Always Been Against This by Omar El Akkad
  • 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-14 02:47:40
Previous
Deletes a pet
Built with