My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • Download Pdf The Hills of California by Jez Butterworth
  • Download Pdf Big Nate In the Zone by Lincoln Peirce
  • Look at Me The XXXTENTACION Story by Jonathan Reiss on Audiobook New
  • Download Pdf The New Model of Selling Selling to an Unsellable Generation by Jerry Acuff Jeremy Min
  • PDF EPUB Download Alas de hierro Empíreo 2 Edición coleccionista enriquecida y limitada Iron Fla
  • Download PDF What If Jesus Was Serious about Justice A Visual Guide to the Good News of Gods Judgmen
  • James Dean An American Icon by Thomas Brennan on Iphone New Format
  • pdf download The Vanished Ones by Chad Lucas
  • Download PDF What Color Is Your Parachute Job-Hunters Workbook Seventh Edition A Companion to the W
  • Read pdf A Murder in Hollywood The Untold Story of Tinseltowns Most Shocking Crime by Casey Sherma
  • Another Mans Poison A George Molly Palmer-Jones Novel by Ann Cleeves on Audiobook New
  • download pdf So Let Them Burn by Kamilah Cole
  • Milk and Honey 10th Anniversary Collectors Edition by Rupi Kaur on Iphone New Format
  • Read online A Load of Old Balls The QI History of Sport by James Harkin Anna Ptaszynski
  • PDF EPUB Download The Word of Dog What Our Canine Companions Can Teach Us About Living a Good Life
  • pdf download The Stormlight Archive Books 1-3 The Way of Kings Words of Radiance Oathbringer by B
  • PDF The Sources of Modern Architecture and Design by Nikolaus Pevsner Kenneth Frampton
  • Black Psychedelic Revolution From Trauma to Liberation--How to heal from racial generational and s
  • PDF DOWNLOAD Tokyo Noir In and Out of Japans Underworld by Jake Adelstein on Iphone
  • DOWNLOADS The Super Cup Face-Off Geronimo Stilton 81 by Geronimo Stilton
  • PDF Kindle The Worst Journey in the World Volume 1 Making Our Easting Down The Graphic Novel by Sa
  • RoomMate A Twisted Psychological Thriller from a Female Serial Killers POV by Chad Olshavsky April
  • Read Pdf The Black Fantastic 20 Afrofuturist Stories by andré m. carrington
  • PDF Download Soviet Tanks at Kursk 1943 by William E. Hiestand Henry Morshead Edouard A. Groult
  • pdf download Tremendous The Life of a Comedy Savage by Joey Diaz Erica Florentine
  • PDF DOWNLOAD Hildas Book of Beasts and Spirits by Emily Hibbs Jason Chan P.L. on Iphone
  • Download Pdf by Kiril Hristov
  • epub download Sweet Crochet Friends 16 Amigurumi Creations from Khuc Cay by Hoang Thi Ngoc Anh
  • pdf download Skandar and the Chaos Trials by A.F. Steadman
  • Download Pdf Blindside - Marks Story by N.R. Walker
  • Download Pdf Wasps in the Ice Cream by Tim McGregor
  • Download Pdf Princeton Review Digital SAT Premium Prep 2024 4 Practice Tests Online Flashcards Re
  • Download Pdf Stop Thief Anarchism and Philosophy by Catherine Malabou Carolyn Shread
  • DOWNLOADS A Vanishing of Griffins by S.A. Patrick
  • DOWNLOADS Their Dying Embrace A completely gripping and heart-stopping crime thriller by Helen Phife
  • My Ramadan Journal Ramadan Activity Book for Kids by Hasan Ahmet Gokce Sumeyra Ozcan on Ipad
  • Lippincott Illustrated Reviews Biochemistry by Emine E. Abali Susan D. Cline David S. Franklin Su
  • download pdf The Worlds Most Boring Chess Book The Isolated d-Pawn in the Endgame by Ian Rogers La
  • download pdf Forged by Speed The making of a mountain bike world champion by Steve Peat Tim March
  • PDF DOWNLOAD Loving Someone with a Serious Mental Illness Caring for Your Loved One and Yourself o
  • PDF EPUB Download Strike Labor Unions and Resistance in the Roman Empire by Sarah E Bond Full Book
  • DOWNLOAD PDF EPUB Caboose A Picture Book by Travis Jonker Ruth Chan
  • Download PDF Hildegard von Bingen A Journey into the Images by Hildegard von Bingen Sara Salvadori
  • Online Read Ebook Panzer Crewman by Simon Forty Richard Charlton-Taylor
  • PDF EPUB Download Titanic The Ship Magnificent Volume One by Bruce Beveridge Steve Hall Scott Andr
  • DOWNLOAD PDF EPUB Gris Artbook by Nomada Studio
  • Just for the Summer by Abby Jimenez on Ipad
  • Warrior to Civilian The Field Manual for the Heros Journey by Robert Sarver Alex Gendzier on Ipad
  • pdf download Neeka and the Missing Key Wilder Zoo 1 by Tina Strachan Max Hamilton
  • PDF Download RecipeTin Eats Dinner 150 Recipes for Fast Everyday Meals by Nagi Maehashi
  • 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