My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read pdf First Aid for Broken Hearts Tarot Compassionate Insight for Solace and Guidance through H
  • epub download The World Atlas of Wine 8th Edition by Hugh Johnson Jancis Robinson
  • download pdf The Paper Boys by Dp Clarence
  • PDF Kindle Marvel Arms and Armor The Mightiest Weapons and Technology in the Universe by DK
  • PDF Rose in Chains Deluxe Limited Edition by Julie Soto
  • PDF Download Under the Oak Tree Volume 1 The Novel by Suji Kim
  • Online Read Ebook Missing Baby Doe by B. J. Daniels
  • Read Pdf Glow of the Everflame A Novel by Penn Cole
  • Read online Lorne The Man Who Invented Saturday Night Live by Susan Morrison
  • PDF EPUB Download The Wizard of Oz by L. Frank Baum William Wallace Denslow Full Book
  • A Home of Her Own by Keli Gwyn on Ipad
  • pdf download From the Forest by L. E. Modesitt Jr.
  • PDF EPUB Download A Business Proposal Vol. 8 by Haehwa NARAK Perilla Full Book
  • PDF EPUB Download Duty to Protect by Lisa Phillips Carol J. Post Full Book
  • pdf download Breaking the Code by Maria Lokken
  • DOWNLOAD PDF EPUB Cybernova by Hunter Whitlow
  • DOWNLOAD PDF EPUB A Home for Her Family by Virginia Carmichael
  • pdf download Phantasma by Kaylie Smith
  • Lovers Touch and A Deal with Demakis by Penny Jordan Tara Pammi on Iphone New Format
  • The Mountain Mans Valentine Baby by Mia Brody on Iphone New Format
  • PDF Download Self-Portrait in the Studio by Giorgio Agamben Kevin Attell
  • PDF Kindle Tower of Silence by Larry Correia
  • PDF Defying Shadows For Witches and Pagans Battling Cancer and Chronic Illness by Jessica Settergre
  • PDF DOWNLOAD Little Wing The Jimmy McCulloch Story by Paul Salley Mark Cunningham on Iphone
  • Download Pdf Abiding in Emptiness A Guide for Meditative Practice by Bhikkhu Analayo
  • PDF EPUB Download A Cure for the Vet by Ann Roth Julie Benson Full Book
  • The Relationship Mechanic A Spicy Small Town Black Sapphic Rom Com by Karmen Lee on Iphone New Forma
  • pdf download A Trap for Cinderella by Sébastien Japrisot Helen Weaver
  • DOWNLOADS Machine Learning From the Classics to Deep Networks Transformers and Diffusion Models by
  • Read online The Conscience of the Party Hu Yaobang Chinas Communist Reformer by Robert L. Suettinge
  • PDF Download Catherine the Princess of Wales A Biography of the Future Queen by Robert Jobson
  • Read Pdf Something Good by Kenneth Kraegel
  • download pdf Love Sign by Susan Kirby
  • PDF Its Only a Game by Kelsea Yu
  • Read online Lights Cowboy Action by Lesley Ann McDaniel
  • PDF Download Hell In Search of a Christian Ecology by Timothy Morton
  • Read online Ilium A Novel by Lea Carpenter
  • Read Pdf Bowie Odyssey 74 by Simon Goddard
  • epub download Hillbilly Highway The Transappalachian Migration and the Making of a White Working Cla
  • Read Pdf Happy Hour A Novel by Marlowe Granados
  • Download PDF The Paris Dancer The emotional and inspiring historical novel to look out for in 2025 b
  • PDF EPUB Download Magic Stone Gourmet Eating Magical Power Made Me the Strongest Volume 8 Light Nove
  • PDF Kindle The Gilded Cage by Lynette Noni
  • Read online The Signal by Samuel Stoterau
  • PDF EPUB Download Love Letters from the Trail by Tif Marcelo Full Book
  • Body Parts A Serial Killers Deadly Compulsions by Caitlin Rother on Iphone New Format
  • Read online Were Pregnant The First Time Dads Pregnancy Handbook by Adrian Kulp
  • download pdf The Official Wordscapes Puzzle Book Volume 1 by PeopleFun
  • Mythic Plants Potions and Poisons from the Gardens of the Gods by Ellen Zachos on Audiobook New
  • PDF EPUB Download Toiveiden lapset by Danielle Steel Kaisa Luntinen Full Book
  • 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-07 22:53:55
Previous
Deletes a pet
Built with