My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Thus Spoke Zarathustra A Book for Everyone and No One by Friedrich Nietzsche on Iphone New Format
  • Read pdf Swing by Audrey Meeker Sarah Davidson
  • PDF DOWNLOAD The House of Beckham Money Sex and Power by Tom Bower on Iphone
  • Download Pdf Bonds of Hercules by Jasmine Mas
  • Read online Sugar Apple Fairy Tale Vol. 7 light novel by Miri Mikawa Aki Nicole Wilder
  • epub download By Any Other Name A Novel by Jodi Picoult
  • pdf download The Making of Baron Haversmere by Carol Arens
  • PDF First Flight Final Fall by C. W. Farnsworth
  • PDF Theres Treasure Inside by Jon Collins-Black
  • Download PDF The Person I Loved Asked Me to Die in My Sisters Stead Volume 2 by Mizuki Nagano Maki
  • Read online Christmas Gifts by Gail Gaymer Martin Brenda Minton
  • download pdf Twisted Lace by A M McCoy
  • PDF EPUB Download Cat Gamer Volume 7 by Wataru Nadatani Zack Davisson Susie Lee Full Book
  • pdf download The Darkness Within Us by Tricia Levenseller
  • Online Read Ebook God Didnt Make Us to Hate Us 40 Devotions to Liberate Your Faith from Fear and Rec
  • Download Pdf The Quiet Librarian A Novel by Allen Eskens
  • PDF Download What Does It Feel Like by Sophie Kinsella
  • Download Pdf The Mysterious Missing Matzoh by Alan Katz Adam Auerbach
  • PDF Lady Nightmare by Rachel M. Yoldi
  • Read online People in Glass Houses by Jayne Castle
  • PDF Ander Santi Were Here A Novel by Jonny Garza Villa
  • Pdf ePub Herbs Vitamins Supplements for Wellness Beauty The Ultimate Guide by Janet Weiner Mich
  • Hearing The Call by Nekesa Sepiwe on Ipad
  • Read online A Rumored Engagement by Lily George
  • PDF DOWNLOAD An Unexpected Amish Family by Patricia Davids Jocelyn McClay on Iphone
  • The Hidden Dungeon Only I Can Enter Manga Vol. 12 by Meguru Seto Tomoyuki Hino Takehana Note on Au
  • Say Its Forever by A.L. Jackson on Audiobook New
  • Read pdf American Poison A Deadly Invention and the Woman Who Battled for Environmental Justice by
  • Read online In Winter I Get Up at Night A Novel by Jane Urquhart
  • DOWNLOAD PDF EPUB Bonded in Death by J. D. Robb
  • Cosas que dejamos en el olvido by Lucy Score Sonia Tanco on Iphone New Format
  • Download Pdf Cuentos by Dan Henderson
  • pdf download Sparksons Illustrated Guide to ECG Interpretation by Jorge Muniz
  • PDF Download The Crimson Crown by Heather Walter
  • PDF EPUB Download The End of the World According to Jesus of Nazareth by Jeff Kinley Full Book
  • DOWNLOAD PDF EPUB Danganronpa 2 Chiaki Nanamis Goodbye Despair Quest Volume 2 by Karin Suzuragi S
  • pdf download Delusional Confessions from One Interns Rise to CEO by Samantha Zink
  • DOWNLOADS The Mortal Instruments The Graphic Novel Vol. 5 by Cassandra Clare Cassandra Jean
  • Download PDF Brain Games - Puzzles for Mom More Than 170 Puzzles to Brighten Moms Day by Publication
  • Download PDF Harlequin Intrigue March 2025 - Box Set 2 of 2 by Nicole Helm Maggie Wells Janice Kay
  • Download PDF The Little Mermaid Guide to Merfolk by Eric Geron
  • DOWNLOAD PDF EPUB The Desert Talon by Karin Lowachee
  • Too Tired to Fight 13 Essential Conflicts Parents Must Have to Keep Their Relationship Strong by Eri
  • Read Pdf Mountain Upside Down by Sara Ryan
  • Caught up Roman - TikTok made me buy it Sports Romance trifft auf Good Guy x Wild Girl und Found Fam
  • PDF DOWNLOAD Lonely Castle in the Mirror Manga Vol. 5 by Mizuki Tsujimura Tomo Taketomi on Iphone
  • Pdf ePub The How To Study Chess on Your Own Workbook Exercises and Training for Ambitious Chess Pla
  • Read online Sicilian Avengers Book One by Luigi Natoli Stephen Riggio Umberto Eco
  • PDF DOWNLOAD Joan Didion Memoirs Later Writings LOA 386 Political Fictions Fixed Ideas Where
  • PDF Download The Sun of Knowledge Shams al-Maarif An Arabic Grimoire in Selected Translation by
  • 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-11 01:14:25
Previous
Deletes a pet
Built with