🌐 Roadmap
Follow us on this beautiful path.
Phase 1 - Launch
Smart Contract Audit
Audit
Presale
Liquidity Lock
Contract Waived
DEX Launch
Staking
Launchpad
Exchange
Phase 2 - Growth
Listings Coingecko/Coinmarketcap Trending Exchange Listings
Exchange Listings
Global Meetings
Conventional Integration
Community Expansion
Increased Marketing
Advanced Associations
Partnerships With Influencers
Phase 3 - Domination
Partnerships
Global Expansion
10K + Holders
Meme Conquest
OpenAPI block
GitBook's OpenAPI block is powered by Scalar, so you can test your APIs directly from your docs.
Add a new pet to the store.
Authorizations
Body
idinteger · int64OptionalExample:
10
namestringRequiredExample:
doggie
photoUrlsstring[]Required
statusstring · enumOptionalPossible values:
pet status in the store
Responses
200
Successful operation
400
Invalid input
422
Validation exception
default
Unexpected error
post
POST /api/v3/pet HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 133
{
"id": 10,
"name": "doggie",
"category": {
"id": 1,
"name": "Dogs"
},
"photoUrls": [
"text"
],
"tags": [
{
"id": 1,
"name": "text"
}
],
"status": "available"
}
{
"id": 10,
"name": "doggie",
"category": {
"id": 1,
"name": "Dogs"
},
"photoUrls": [
"text"
],
"tags": [
{
"id": 1,
"name": "text"
}
],
"status": "available"
}
Last updated