- Sample APIs
- Advancement
- Chat
- Economy
- Server
- pong!GET
- Get information about the scoreboard objectivesGET
- Get information about a specific objectiveGET
- Get information about the serverGET
- Executes a command on the server from the console, returning it's output. Be aware that not all command executors will properly send their messages to the CommandSender, though, most do.POST
- Get the whitelistGET
- Update the whitelistPOST
- Delete specific player from the whitelistDELETE
- Get information about all worldsGET
- Downloads a ZIP compressed archive of all the worlds' foldersGET
- Triggers a world save of all worldsPOST
- Get information about a specific worldGET
- Downloads a ZIP compressed archive of the world's folderGET
- Triggers a world savePOST
- PlaceholderAPI
- Player
- Plugins
Find pet by ID
GET
/pet/{petId}
pet
请求参数
Path 参数
petId
string
pet ID
示例值:
1
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/pet/1'
返回响应
🟢200OK
application/json
Body
code
integer
必需
>= 0<= 0
data
object (Pet)
必需
id
integer <int64>
Pet ID
>= 1
category
object (Category)
group
name
string
name
示例值:
doggie
photoUrls
array[string]
image URL
tags
array[object (Tag) {2}]
tag
status
enum<string>
必需
枚举值:
availablependingsold
示例
{
"code": 0,
"data": {
"name": "Hello Kity",
"photoUrls": [
"http://dummyimage.com/400x400"
],
"id": 3,
"category": {
"id": 71,
"name": "Cat"
},
"tags": [
{
"id": 22,
"name": "Cat"
}
],
"status": "sold"
}
}
修改于 2023-08-27 05:14:52