GET /pokemon
浏览完整全国图鉴中的 1,000+ 只 Pokemon。返回名称、ID 和精灵图片 URL。分页浏览。数据来自 PokeAPI,涵盖从 Red/Blue 到 Scarlet/Violet 的所有世代。
limit
可选
默认: 20
Pokemon per page (max 100)
offset
可选
默认: 0
Starting position
| 名称 | 必填 | 默认值 | 描述 |
|---|---|---|---|
limit |
否 | 20 | Pokemon per page (max 100) |
offset |
否 | 0 | Starting position |
curl "https://nordapi.ee/api/v1/pokemon?limit=10"
curl https://nordapi.ee/api/v1/pokemon
curl "https://nordapi.ee/api/v1/pokemon?limit=50&offset=50"
curl "https://nordapi.ee/api/v1/pokemon?limit=5"
{
"count": 10,
"data": [
{
"id": "1",
"name": "bulbasaur",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png"
},
{
"id": "2",
"name": "ivysaur",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/2.png"
},
{
"id": "3",
"name": "venusaur",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/3.png"
},
{
"id": "4",
"name": "charmander",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/4.png"
},
{
"id": "5",
"name": "charmeleon",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/5.png"
},
{
"id": "6",
"name": "charizard",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/6.png"
},
{
"id": "7",
"name": "squirtle",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/7.png"
},
{
"id": "8",
"name": "wartortle",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/8.png"
},
{
"id": "9",
"name": "blastoise",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/9.png"
},
{
"id": "10",
"name": "caterpie",
"sprite": "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/10.png"
}
],
"success": true,
"total": 1350
}