My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • download pdf The Latinx Guide to Liberation Healing from Historical Generational and Individual T
  • pdf download Courting Holly by Lynn A. Coleman
  • PDF For Love of a Dog by Janice Carter
  • PDF DOWNLOAD Heavenly Bodies by Imani Erriu on Iphone
  • Read online Moroccan Cookbook Exploring the Food of a Timeless Cuisine by Ghillie Basan
  • PDF DOWNLOAD The Complete Birds of the World Every Species Illustrated by Norman Arlott Ber van P
  • PDF Download The Summer I Turned Pretty by Jenny Han
  • Download Pdf From the Belly of a Blue Whale by B. Z. Rose
  • PDF The Bloodied Nightgown and Other Essays by Joan Acocella
  • download pdf No Place to Bury the Dead A Novel by Karina Sainz Borgo Elizabeth Bryer
  • PDF Download Rat City Overcrowding and Urban Derangement in the Rodent Universes of John B. Calhou
  • PDF Download The Betrayal Bind How to Heal When the Person You Love the Most Hurts You the Worst b
  • Read pdf Neurodiversity Coaching A Psychological Approach to Supporting Neurodivergent Talent and
  • The Ballerina of Auschwitz Young Adult Edition of The Choice by Edith Eva Eger on Audiobook New
  • DOWNLOADS The 5 Principles of Parenting Your Essential Guide to Raising Good Humans by Aliza Pressma
  • pdf download North and South by Elizabeth Gaskell
  • Pdf ePub Christian America and the Kingdom of God White Christian Nationalism from the Puritans thr
  • download pdf A Guide Book of United States Coins 2026 Official Red Book by R S Yeoman John Feigenb
  • Read pdf The Knight and the Moth by Rachel Gillig
  • Download Pdf Highland Knight by Hannah Howell
  • DOWNLOAD PDF EPUB Among Serpents by Marc J Gregson
  • Online Read Ebook Moroccan Cookbook Exploring the Food of a Timeless Cuisine by Ghillie Basan
  • PDF Download Shadows of the Past by ML Rose
  • DOWNLOAD PDF EPUB Word Search Challenge 100 Puzzles to do anywhere anytime by Roland Hall
  • Seven Things You Cant Say About China by Tom Cotton on Audiobook New
  • epub download Harry Potter and the Sorcerers Stone by J. K. Rowling Mary GrandPré
  • Read Pdf Monstrilio by Gerardo Sámano Córdova
  • DOWNLOAD PDF EPUB The House of Eve by Sadeqa Johnson
  • Download Pdf The Wars of the Roses The Medieval Art of Graham Turner by Graham Turner
  • download pdf Mirabelle and the Baby Dragons by Harriet Muncaster
  • Read online Magic Stone Gourmet Eating Magical Power Made Me the Strongest Volume 8 Light Novel by R
  • Download PDF George Yeo Musings - Series One by George Yong-boon Yeo Tai Ho Woon
  • Pdf ePub The Reluctant Guardian by Susanne Dietze download ebook
  • DOWNLOAD PDF EPUB A Domestic Cook Book Containing a Careful Selection of Useful Receipts for the K
  • PDF Download Los dos hemisferios de Lucca Luccas World by Bárbara Anderson
  • DOWNLOAD PDF EPUB Unhumans The Secret History of Communist Revolutions and How to Crush Them by Ja
  • Read pdf The Warriors Bride Alliance by Denise Lynn
  • What a Run Inside the Philadelphia Eagles Unforgettable 2024 Championship Season by The Philadelphia
  • Read online If I Must Die Poetry and Prose by Refaat Alareer Yousef M. Aljamal Susan Abulhawa
  • Read pdf Bride Wanted by Renee Andrews
  • Download Pdf Its Only a Game by Kelsea Yu
  • Mangatopia Sea Creatures An Underwater Coloring Book of Anime and Manga by Liv Wan on Iphone New For
  • Read Pdf Boys Weekend by Mattie Lubchansky
  • DOWNLOADS Lady Nightmare by Rachel M. Yoldi
  • Read pdf Fireborn Phoenix and the Frost Palace by Aisling Fowler
  • Read online The World After the Fall Vol. 9 by Undead Gamja Undead Ttalgi3B2S Undead Ttalgi3B2S ST
  • PDF EPUB Download Fairy Tale Tarot by Lisa Hunt Full Book
  • Online Read Ebook Milo Manara - The Definitive Collection by Milo Manara
  • DOWNLOADS Glaciers Edge A Novel by R. A. Salvatore
  • PDF DOWNLOAD Hearing The Call by Nekesa Sepiwe on Iphone
  • 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