My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download Cosmos Explore the Wonders of the Universe by DK Becky Smethurst Full Book
  • Download PDF La habitación de al lado The Room Next Door by Pedro Almodóvar Sigrid Nunez
  • Read online Lucy Undying A Dracula Novel by Kiersten White
  • PDF The Dungeon Anarchists Cookbook by Matt Dinniman
  • Online Read Ebook Black Girls and How We Fail Them by Aria S. Halliday
  • PDF The Promise She Made An utterly heartbreaking and gripping World War 2 historical novel inspir
  • DOWNLOAD PDF EPUB Amygdala by Sam Fennah
  • PDF Kindle Michael S. Smith Classic by Design by Michael S. Smith ANDREW FERREN Shonda Rhimes
  • download pdf Seeing - Making Room for Thought by Susan Buck-Morss Kevin McCaughey Adam Michaels
  • PDF Cunning Vows by Kia Carrington-Russell T L Smith
  • The Art of The Lord of the Rings The War of the Rohirrim by Daniel Falconer on Ipad
  • Draw Like a Mangaka The Complete Beginners Guide to Learning to Draw Manga by Marcel Kuhn on Ipad
  • Download Pdf Im Your Man Harlequin Next Series 95 by Susan Crosby
  • PDF EPUB Download Someone Like You by Karen Kingsbury Full Book
  • Enchantra by Kaylie Smith on Ipad
  • PDF EPUB Download Broken Throne A Red Queen Collection by Victoria Aveyard Full Book
  • PDF The Way to a Cowboys Heart by Barbara Ankrum
  • Morpho Face Head and Neck Anatomy for Artists by Michel Lauricella on Audiobook New
  • DOWNLOAD PDF EPUB Only You Can Love Me by Carolyn Miller
  • The Notorious Scarlett and Browne by Jonathan Stroud on Audiobook New
  • DOWNLOAD PDF EPUB The Surprising Rebirth of Belief in God Why New Atheism Grew Old and Secular Thi
  • PDF Blue Sisters A Novel by Coco Mellors
  • pdf download David Buschs Nikon Zf Guide to Digital Photography by David D. Busch
  • DOWNLOADS An Autobiography of Trauma A Healing Journey by Peter A. Levine
  • Read Pdf The Antique Hunters Death on the Red Sea A Novel by C.L. Miller
  • DOWNLOADS The Ismaili Imams A Biographical History by Farhad Daftary
  • Read Pdf A Ghost of Caribou A Novel of Suspense by Alice Henderson
  • pdf download Death Takes Me A Novel by Cristina Rivera Garza Robin Myers Sarah Booker
  • Read pdf We Will Rest The Art of Escape by Tricia Hersey George McCalman
  • Read pdf Be More Moo Deng The Unofficial Coloring Book by DK
  • PDF EPUB Download Isaac Julien Lina Bo Bardi--A Marvellous Entanglement by Isaac Julien Giuliana
  • Pdf ePub Journey of Hope by Debbie Kaufman download ebook
  • Read online The Paradise Problem by Christina Lauren
  • Tamamoris Fantasies Never Stop Vol. 1 by TATSUWAIPU on Ipad
  • Download PDF Hillbilly Highway The Transappalachian Migration and the Making of a White Working Clas
  • Online Read Ebook Bath Time Fish by Adam Gamble Mark Jasper
  • DOWNLOADS Franz Kafka The Drawings by Andreas Kilcher Pavel Schmidt Judith Butler Kurt Beals
  • Pdf ePub Relinquished Realms by Joaquïn Baldwin download ebook
  • Read Pdf A Seed in the Sun by Aida Salazar
  • PDF EPUB Download The Ballad of Songbirds and Snakes by Suzanne Collins Full Book
  • Madd Ink by Dani René on Iphone New Format
  • PDF EPUB Download Akashic Records of Bastard Magic Instructor Vol. 14 by Hitsuji Tarou Tsunemi Ao
  • Through You by Ariana Godoy on Iphone New Format
  • epub download Alas de ónix Empíreo 3 Onyx Storm by Rebecca Yarros
  • PDF Kindle Metal Gear Solid 2 The Novel Sons of Liberty by Raymond Benson
  • download pdf The Otaku in 2200 A.D. Part 2 by Chousuke Nagashima
  • Journey Mirror A Journal of Inner Love Kindness and Authenticity by Tia Blue Burrell K. B. Whitake
  • PDF EPUB Download The Anomie Review of Contemporary British Painting Volume 3 by Anneka French Ma
  • PDF Kindle Solitary Walker A Novel of Mary Wollstonecraft by N J Mastro
  • PDF Download Holly by Stephen King
  • 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-08 22:28:10
Previous
Deletes a pet
Built with