My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF Esrahaddon by Michael J. Sullivan
  • PDF Download Dick Tracy Valentines Day Special by Alex Segura Michael Moreci Craig Cermak
  • PDF DOWNLOAD Lady Bumpkin and Her Lord Villain Volume 2 by Ageha Sakura Kurodeko Vasileios Mousi
  • DOWNLOADS The Lord of the Rings The War of the Rohirrim Official Coloring Book by Warner Brothers
  • American Spirits by Russell Banks on Ipad
  • Pdf ePub Say Youll Remember Me by Abby Jimenez download ebook
  • Read online Lunar New Year Love Story by Gene Luen Yang LeUyen Pham
  • Lover Birds by Leanne Egan on Ipad
  • epub download Wicked Pursuit Divine Intervention Deluxe Edition by Katee Robert R.M. Virtues
  • download pdf Palestine and Israel Understanding Encounters by Max L Carter
  • download pdf Confessions of a Gay Priest A Memoir of Sex Love Abuse and Scandal in the Catholic
  • Download PDF Baby Let It Snow by Beverly Jenkins Elaine Overton
  • How to Be a Better Drinker Cocktail Recipes and Boozy Etiquette by Hannah Chamberlain Tug Rice on A
  • DOWNLOAD PDF EPUB My Happy Marriage Vol. 8 light novel by Akumi Agitogi Tsukiho Tsukioka David
  • PDF Kindle Karmatic Heart by Nickea Nixon
  • Read Pdf United States Currency by Kenneth E. Bressett Q David Bowers Patrick Perez
  • DOWNLOAD PDF EPUB Beautiful Ugly A Novel by Alice Feeney
  • Download PDF Hate Me but Let Me Stay Vol. 3 by Hijiki
  • DOWNLOAD PDF EPUB Revenge Meghan Harry and the War Between the Windsors by Tom Bower
  • Download Pdf The Secret of Secrets by Dan Brown
  • Heideggers Being and Time Paraphrased and Annotated by Thomas Sheehan Professor of Religious St on I
  • PDF EPUB Download First Comes Marriage by Laila Rafi Full Book
  • download pdf The Perfect Sacrifice by Abbi Gore Spivey
  • download pdf Behind You by Mike Omer
  • epub download Hilo Book 10 Rise of the Cat A Graphic Novel by Judd Winick
  • Download PDF A Murder Most French by Colleen Cambridge
  • DOWNLOADS Daylight by Ila Sikorski
  • epub download Dream of the Bird Tattoo Poems and Sueï½itos by Juan J Morales
  • DOWNLOAD PDF EPUB Tell Me What You Did A Novel by Carter Wilson
  • Big Ideas Little Pictures Explaining the world one sketch at a time by Jono Hey on Iphone New Forma
  • DOWNLOADS The Diaries of Franz Kafka by Franz Kafka Ross Benjamin
  • PDF EPUB Download My Family and I A Mississippi Memoir by Adam Gussow Full Book
  • Download Pdf Omniscient Readers Viewpoint novel Vol. 1 by singNsong
  • PDF Kindle Hidden Pictures A Novel by Jason Rekulak
  • PDF DOWNLOAD Brown Girl in the Ring by Nalo Hopkinson on Iphone
  • Raven of the Inner Palace Light Novel Vol. 5 by Kouko Shirakawa on Audiobook New
  • Online Read Ebook Holly A Belladonna Novella by Adalyn Grace
  • Online Read Ebook Royal Rescue by Tammy Johnson
  • PDF EPUB Download The Soul of Wealth 50 reflections on money and meaning by Daniel Crosby Full Book
  • My Dress-Up Darling Vol. 10 by Shinichi Fukuda on Audiobook New
  • Daughters of the Blue Moon by Millie Abecassis on Iphone New Format
  • download pdf Where Is My Brother A familys journey through grief and loss by Sean Edward Fox Quint
  • PDF EPUB Download Adolescence Boy it by Aya Sakyou Yuzuki N Full Book
  • Read pdf Adventure Time The Fionna and Cake Compendium Vol. 1 by Natasha Allegri N.D. Stevenson
  • Pdf ePub JoJo A-GoGo by Hirohiko Araki download ebook
  • pdf download Playing Hard to Get by Monica Murphy
  • DOWNLOADS Relinquished Realms by Joaquïn Baldwin
  • DOWNLOAD PDF EPUB Amish Reckoning by Jocelyn McClay
  • PDF EPUB Download The Wrong Earth Dead Ringers by Tom Peyer Jamal Igle Juan Castro Full Book
  • epub download House of Crimson Curses A Steamy Vampire Fantasy Romance by Ruby Roe
  • 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-09 22:58:10
Previous
Deletes a pet
Built with