← 娱乐

Pokemon 列表

GET /pokemon

浏览完整全国图鉴中的 1,000+ 只 Pokemon。返回名称、ID 和精灵图片 URL。分页浏览。数据来自 PokeAPI,涵盖从 Red/Blue 到 Scarlet/Violet 的所有世代。

参数

limit 可选 默认: 20

Pokemon per page (max 100)

offset 可选 默认: 0

Starting position

请求示例

基本用法
curl "https://nordapi.ee/api/v1/pokemon?limit=10"
First 20 Pokemon
curl https://nordapi.ee/api/v1/pokemon
Pokemon 51-100
curl "https://nordapi.ee/api/v1/pokemon?limit=50&offset=50"
First 5 starter region
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
}