My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Read Pdf Christmas Protector by Dana Mentink Susan Sleeman
  • PDF Kindle Murdle Volume 2 100 Elementary to Impossible Mysteries to Solve Using Logic Skill and
  • PDF EPUB Download How to Romanticize Your Life Joyful Tips and Advice to Elevate Every Day by Soph
  • epub download Lonely Planet Pocket Valencia by Lucy Lovell
  • Murder in the Tea Leaves by Laura Childs on Ipad
  • PDF EPUB Download Marilyn Manson by Perou 21 Years in Hell by Marilyn Manson Perou Full Book
  • PDF DOWNLOAD I Hate Fairyland Book Three by Skottie Young Brett Bean on Iphone
  • PDF Kindle Three Bags Full by Leonie Swann Anthea Bell A. J. Finn
  • PDF EPUB Download Neighbors and Other Stories by Diane Oliver Tayari Jones Full Book
  • DOWNLOAD PDF EPUB Godsrain - A Pathfinder Novel by Liane Merciel
  • PDF DOWNLOAD A Statin-Free Life by on Iphone
  • epub download The Apocalypse of the Birds 1 Enoch and the Jewish Revolt against Rome by Elena L Duga
  • DOWNLOADS Icarus by K. Ancrum
  • DOWNLOAD PDF EPUB Triage X Vol. 27 by Shouji Sato Christine Dashiell
  • Online Read Ebook Rose in Chains Deluxe Limited Edition by Julie Soto
  • PDF EPUB Download Uxa.Gov by Blake Butler Full Book
  • PDF Kindle SKin by Ibi Zoboi
  • PDF Kindle LatinoLand A Portrait of Americas Largest and Least Understood Minority by Marie Arana
  • Download PDF The Psychology of Fashion by Carolyn Mair
  • Dork Diaries Books 13-15 Boxed Set Dork Diaries 13 Dork Diaries 14 Dork Diaries 15 by Rachel Renée R
  • epub download Unraveling Your Relationship with Money Ditch Your Money Trauma So You Can Live an Abu
  • PDF Kindle Walt Disneys Uncle Scrooge The Diamond Jubilee Collection by Carl Barks
  • DOWNLOADS Astrology Decoded The Secret Science of Indias Sages by Vish Chatterji MBA
  • PDF The Champ is Here by Nathan Dragon
  • PDF Download How Not to Chaperone a Lady A Steamy Historical Romance Book by Virginia Heath
  • PDF Download Storm Warning by Elizabeth Goddard
  • PDF DOWNLOAD Travels Through Middle Earth The Path of a Saxon Pagan by Alaric Albertsson on Iphone
  • PDF Thutmose III and Hatshepsut Pharaohs of Egypt Their Lives and Afterlives by Aidan Dodson
  • PDF Download Dear Black Girls How to Be True to You by Aja Wilson
  • epub download Blood Over Bright Haven A Novel by M. L. Wang
  • Online Read Ebook Oh the Places Youll Go by Dr. Seuss
  • pdf download The Nine OClock Whistle Stories of the Freedom Struggle for Civil Rights in Enfield No
  • Download Pdf Rainbows After Storms Vol. 2 by Luka Kobachi
  • Read online Kiss of the Basilisk Deluxe Edition A Split or Swallow Novel by Lindsay Straube
  • Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros on Audiobook New
  • pdf download Starting Over in Starshine Cove A perfect feel-good romantic comedy to escape with by D
  • PDF DOWNLOAD Foul Play by Erin Kaste on Iphone
  • Read Pdf Spirits Come from Water An Introduction to Ancestral Veneration and Reclaiming African Sp
  • Online Read Ebook The Cheese Biscuit Queen Kiss My Aspic Southern Recipes Saucy Stories and More
  • DOWNLOAD PDF EPUB Rick Kotanis 400 Million Dollar Summer by Waka T. Brown
  • PDF Download Christmas Cowboy Kisses A Family for Christmas A Christmas Miracle Christmas with
  • PDF DOWNLOAD Until the Stars Fall BN Exclusive Edition by Vanessa Rasanen on Iphone
  • Woman Hating by Andrea Dworkin on Ipad
  • PDF Download Christmas Texas Style by Tina Leonard Leah Vale Linda Warren
  • PDF Kindle Her Holiday Protector and Holiday on the Run by Lenora Worth Laura Scott
  • PDF EPUB Download GED Test Prep 2024-2025 2 Practice Tests Proven Strategies Online by Caren Van S
  • Hercule Poirots Silent Night A Novel by Sophie Hannah on Audiobook New
  • Online Read Ebook People the Planet Needs Now Voices for Justice Science and a Future of Promise b
  • Pdf ePub My Noisy Roommate The Roof Over My Head Comes With Monsters and a Hottie 2 by Kaho Ozaki d
  • PDF Kindle Rose House by Arkady Martine
  • 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-12 23:38:35
Previous
Deletes a pet
Built with