My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • DOWNLOAD PDF EPUB Vajrayana and the Culmination of the Path by Dalai Lama Thubten Chodron
  • Read Pdf A Year of Deep Listening 365 Text Scores for Pauline Oliveros by Stephanie Loveless
  • epub download A Heart Full of Headstones An Inspector Rebus Novel by Ian Rankin
  • DOWNLOAD PDF EPUB Black in Blues How a Color Tells the Story of My People by Imani Perry
  • PDF The Art and Soul of Blade Runner 2049 - Revised and Expanded Edition by Tanya Lapointe
  • Download PDF The Secret of Moonrise Manor by Stephanie Bearce
  • Me and Other Bunnies by Mo Willems on Ipad
  • Read Pdf 8 Lives of a Century-Old Trickster A Novel by Mirinae Lee
  • PDF Kindle Winning at Sales How to Get So Good People Say by Taylor A. Welch
  • PDF Milk and Honey 10th Anniversary Collectors Edition by Rupi Kaur
  • PDF EPUB Download Love In An Alien Purgatory by Farah Yurdozu Full Book
  • Download Pdf Relativity and Cosmology Volume 5 of Modern Classical Physics by Kip S. Thorne Roger D
  • DOWNLOADS Sentinel by Mark Greaney
  • The Teachings of Don Juan A Yaqui Way of Knowledge by Carlos Castaneda on Audiobook New
  • Museum of Degenerates Portraits of the American Grotesque by Eli Valley on Audiobook New
  • Read Pdf Las indignas The Unworthy by Agustina Bazterrica
  • Download PDF The Secret Lives of Booksellers and Librarians Their stories are better than the bestse
  • Read online Dodge and Burn by Ellen Crosby
  • Pdf ePub Burma Sahib A Novel by Paul Theroux download ebook
  • Read online Broken Harbor Deluxe Edition by Catherine Cowles
  • PDF Download Over My Dead Body by Maz Evans
  • Read online Welcome to Demon School Iruma-kun 12 by Osamu Nishi
  • PDF EPUB Download Truth or Beard Deluxe Edition by Penny Reid Full Book
  • See You in My 19th Life Vol. 5 by Lee Hye on Audiobook New
  • PDF Salt Hank A Five Napkin Situation A Cookbook by Henry Laporte
  • PDF Kindle Bake With Brooki by Brooke Bellamy
  • download pdf by Paul Balibar
  • DOWNLOAD PDF EPUB Girls to the Front 40 Asian American Women Who Blazed a Trail by Niña Mata
  • Thieves by Lucie Bryon on Audiobook New
  • Download PDF Throne of Glass Box Set by Sarah J. Maas
  • Hot Bare-Naked Beauties Photography without Limits by Steven Andres on Audiobook New
  • PDF Chasing Shadows Cyber Espionage Subversion and the Global Fight for Democracy by Ronald J. De
  • download pdf Pink Slime A Novel by Fernanda Trías Heather Cleary
  • Online Read Ebook 1984 75th Anniversary by George Orwell Dolen Perkins-Valdez Sandra Newman
  • PDF EPUB Download Hidden Axis Forces Beyond the Visible World by Shepard Ambellas Full Book
  • Download PDF The Marble Queen by Anna Kopp Gabrielle Kari
  • DOWNLOADS 2.5 Dimensional Seduction Vol. 13 by Yu Hashimoto
  • epub download The Diary of a Young Girl The Definitive Edition by Anne Frank Otto M. Frank Mirjam
  • download pdf Flavorama A Guide to Unlocking the Art and Science of Flavor by Arielle Johnson René
  • epub download The Scroobious Pip by Edward Lear Charles Santore Nicholas Santore
  • DOWNLOAD PDF EPUB The Success Myth by Emma Gannon
  • DOWNLOAD PDF EPUB Now It All Makes Sense How An ADHD Diagnosis Brought Clarity To My Life by Alex
  • The Rosewood Hunt by Mackenzie Reed on Audiobook New
  • PDF Dessert Person Recipes and Guidance for Baking with Confidence by Claire Saffitz
  • DOWNLOADS Year of the Meatball by Angela Calabrese
  • Download PDF The Red Emperor Xi Jinping and His New China by Michael Sheridan
  • The Invention of International Order Remaking Europe after Napoleon by Glenda Sluga on Audiobook New
  • PDF Kuma Kuma Kuma Bear Light Novel Vol. 20 by Kumanano 029
  • epub download Blood Dragon Book 3 The Ravens Fate by Micah Johnson
  • PDF Reign of the Talon by Sophie Kim
  • 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