GET_getContent

  • Riot Documentation

  • API URL:

    https://{region}.api.riotgames.com/val/content/v1/contents{locale}
    

Description

Get content optionally filtered by locale. A locale is recommended to be used for faster response times.

async def GET_getContent(self, region: str, locale: str = "") -> dict:

Arguments

Keyword Arguments

  • locale: String = “” (None)

Examples

Basic example (Just required arguments)

Note

This example is not recommended as it is not using a locale; this will result in a slower response time.

import valaw

client = valaw.Client("riot_api_token", "cluster")

async def func():
    content_data = await client.content.GET_getContent("region")

Advanced example (With Keyword Arguments)

import valaw

client = valaw.Client("riot_api_token", "cluster")

async def func():
    content_data = await client.GET_getContent("region", locale="locale")