PokéAPI Contests API

Contest types, contest effects, and super-contest effects.

Operations 4

GET /contest-type List Contest Types #
GET /contest-type/{id} Get Contest Type #
GET /contest-effect/{id} Get Contest Effect #
GET /super-contest-effect/{id} Get Super Contest Effect #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/pokeapi-contests-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

pokeapi-contests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Poké Berries Contests API
  description: PokéAPI v2 is a free, open-source RESTful API serving comprehensive Pokémon data — species, abilities, moves, items, types, locations, evolution chains, encounters, berries, contests, games, and machines. All endpoints are GET-only and require no authentication. Please cache resources locally; rate limits were removed in 2018 but persistent abusers may be IP-banned.
  version: '2'
  contact:
    name: PokéAPI Maintainers
    url: https://pokeapi.co
  license:
    name: BSD-3-Clause
    url: https://github.com/PokeAPI/pokeapi/blob/master/LICENSE.md
servers:
- url: https://pokeapi.co/api/v2
  description: PokéAPI v2 production base URL
tags:
- name: Contests
  description: Contest types, contest effects, and super-contest effects.
paths:
  /contest-type:
    get:
      tags:
      - Contests
      summary: List Contest Types
      description: List all contest types.
      operationId: listContestTypes
      parameters:
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/Offset'
      responses:
        '200':
          description: A paginated list of contest type resources.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NamedAPIResourceList'
  /contest-type/{id}:
    get:
      tags:
      - Contests
      summary: Get Contest Type
      description: Retrieve a single contest type by id or name.
      operationId: getContestType
      parameters:
      - $ref: '#/components/parameters/IdOrName'
      responses:
        '200':
          description: A single contest type resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContestType'
  /contest-effect/{id}:
    get:
      tags:
      - Contests
      summary: Get Contest Effect
      description: Retrieve a single contest effect by id.
      operationId: getContestEffect
      parameters:
      - $ref: '#/components/parameters/IntegerId'
      responses:
        '200':
          description: A single contest effect resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContestEffect'
  /super-contest-effect/{id}:
    get:
      tags:
      - Contests
      summary: Get Super Contest Effect
      description: Retrieve a single super contest effect by id.
      operationId: getSuperContestEffect
      parameters:
      - $ref: '#/components/parameters/IntegerId'
      responses:
        '200':
          description: A single super contest effect resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuperContestEffect'
components:
  schemas:
    SuperContestEffect:
      type: object
      properties:
        id:
          type: integer
        appeal:
          type: integer
        flavor_text_entries:
          type: array
          items:
            $ref: '#/components/schemas/FlavorText'
        moves:
          type: array
          items:
            $ref: '#/components/schemas/NamedAPIResource'
    ContestEffect:
      type: object
      properties:
        id:
          type: integer
        appeal:
          type: integer
        jam:
          type: integer
        effect_entries:
          type: array
          items:
            $ref: '#/components/schemas/Effect'
        flavor_text_entries:
          type: array
          items:
            $ref: '#/components/schemas/FlavorText'
    NamedAPIResource:
      type: object
      properties:
        name:
          type: string
          description: Slug name of the referenced resource.
        url:
          type: string
          format: uri
          description: Canonical URL of the referenced resource.
    FlavorText:
      type: object
      properties:
        flavor_text:
          type: string
        language:
          $ref: '#/components/schemas/NamedAPIResource'
        version:
          $ref: '#/components/schemas/NamedAPIResource'
    NamedAPIResourceList:
      type: object
      properties:
        count:
          type: integer
        next:
          type: string
          nullable: true
          format: uri
        previous:
          type: string
          nullable: true
          format: uri
        results:
          type: array
          items:
            $ref: '#/components/schemas/NamedAPIResource'
    ContestType:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        berry_flavor:
          $ref: '#/components/schemas/NamedAPIResource'
        names:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              color:
                type: string
              language:
                $ref: '#/components/schemas/NamedAPIResource'
    Effect:
      type: object
      properties:
        effect:
          type: string
        language:
          $ref: '#/components/schemas/NamedAPIResource'
  parameters:
    IdOrName:
      name: id
      in: path
      required: true
      description: Resource id (integer) or name (slug).
      schema:
        type: string
    Offset:
      name: offset
      in: query
      required: false
      description: Number of items to skip before starting to collect the result set.
      schema:
        type: integer
        minimum: 0
        default: 0
    Limit:
      name: limit
      in: query
      required: false
      description: Number of items to return per page.
      schema:
        type: integer
        minimum: 1
        maximum: 100000
        default: 20
    IntegerId:
      name: id
      in: path
      required: true
      description: Resource id (integer only).
      schema:
        type: integer