My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF DOWNLOAD Darkenbloom by Eva Menasse Charlotte Collins on Iphone
  • Download PDF What Alive Means Psychoanalytic Explorations by Thomas H. Ogden
  • PDF Collected Works of Josef Stalin Volume 3 by Josef V Stalin
  • PDF EPUB Download Everything Is Poison by Joy McCullough Full Book
  • PDF The National Gallery. Paintings People Portraits by Annetta Berry Christine Riding Anh Nguy
  • Pdf ePub Meet Every Learners Needs Redesigning Instruction So All Students Can Succeed by Robert Ba
  • Pummel the Devil A Biblical Foundation for Spiritual Warfare by Daniel Duval on Ipad
  • We Could Be Rats A Novel by Emily Austin on Audiobook New
  • Read online Keiichi Tanaami by KEIICHI TANAAMI ALESSIO ASCARI Hans Ulrich Obrist Carlo McCormick
  • PDF EPUB Download The Song of Achilles by Madeline Miller Full Book
  • download pdf Musical Theatre Acting A Practical Guide by JV Mercanti Justin Guarini
  • DOWNLOAD PDF EPUB Not Your Biggest Fan by Sara Ney
  • PDF Download The Secret Public How Music Moved Queer Culture From the Margins to the Mainstream by
  • PDF DOWNLOAD The Last Dangerous Visions by Harlan Ellison J. Michael Straczynski Max Brooks Jam
  • download pdf The Rules of Fortune A Novel by Danielle Prescod Mindy Kaling
  • pdf download Executive Presence 2.0 Leadership in an Age of Inclusion by Sylvia Ann Hewlett
  • Pdf ePub Babylonia A Novel by Costanza Casati download ebook
  • Pdf ePub The Sunbearer Trials by Aiden Thomas download ebook
  • PDF DOWNLOAD American Mother A Life Reclaimed by Colum McCann Diane Foley on Iphone
  • Download PDF Princeton Review AP Statistics Prep 20th Edition 5 Practice Tests Complete Content Re
  • Hal by Amanda Berlind on Iphone New Format
  • PDF EPUB Download Why I Dyed My Hair Purple and Other Unorthodox Stories by Kori Morgan Full Book
  • Online Read Ebook Ronin Island Complete Collection by Greg Pak Giannis Milonogiannis
  • Read online Gleam by Raven Kennedy
  • PDF EPUB Download A Polyamory Devotional 365 Daily Reflections for the Consensually Nonmonogamous by
  • pdf download Bitter Sweet Global Flavors from an Iranian-American Kitchen A Cookbook by Omid Rous
  • PDF A Governesss Guide to Passion and Peril by Manda Collins
  • epub download The Hong Kong Diaries by Chris Patten
  • DOWNLOAD PDF EPUB The Time-Block Planner A Daily Method for Deep Work in a Distracted World by Cal
  • Read pdf Proverbs For A Great Leader Good leadership by Lorenzo Jesus Serrano
  • epub download Whirlwind by Kayla Grosse
  • Download PDF If Only I Had Told Her by Laura Nowlin
  • Read online Love Oracle Divine Guidance for Relationships by Jerico Mandybur
  • pdf download Lets Eat Italy Everything You Want to Know About Your Favorite Cuisine by François-Régi
  • Read pdf Just Last Night A Novel by Mhairi McFarlane
  • DOWNLOAD PDF EPUB Ill Always Be With You by Monica Murphy
  • DOWNLOAD PDF EPUB Battleship Commander The Life of Vice Admiral Willis A. Lee Jr. by Paul Stillwel
  • epub download Zen Mind Jewish Mind Koan Midrash The Living Word by Rami Shapiro
  • PDF Kindle Judas by Jeff Loveness Jakub Rebelka
  • download pdf Loving A Photographic History of Men in Love 1850s-1950s by Hugh Nini Neal Treadwell
  • PDF DOWNLOAD Alas de hierro Empíreo 2 Edición coleccionista enriquecida y limitada Iron Flame by
  • Download Pdf How to Starve Cancer ...and Then Kill It With Ferroptosis by Jane McLelland
  • PDF Vietnam Morning to Midnight A cookbook by Jerry Mai by Jerry Mai
  • Online Read Ebook Beyond Stoicism A Guide to the Good Life with Stoics Skeptics Epicureans and Ot
  • PDF EPUB Download Everything Under the Sun The Complete Guide to Pink Floyd by Mike Cormack Full B
  • PDF EPUB Download A Vindication of the Rights of Woman by Mary Wollstonecraft Full Book
  • Online Read Ebook A Long Time Gone A Novel by Joshua Moehling
  • DOWNLOAD PDF EPUB Kung Fu Panda 4 Movie Novel by June Day
  • PDF Is It Wrong to Try to Pick Up Girls in a Dungeon On the Side Sword Oratoria Vol. 13 light nove
  • Read online Sally Face Art Lore and More by Steve Gabry
  • 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