Kotama is the backend api serving queries. The api is built with Express. The main endpoint for interacting with trade records is the base route. This endpoint takes the exact same format as the frontend takes, and will parse it to make the same query.
Named for the Communications leader of Veritas.
-
Endpoint:
/api
-
Method:
GET
-
Description: Retrieve cards based on the parameters.
-
Parameters:
select
: Expects value ofall
ormin
, although any value that is notall
will be accepted.all
translates toSELECT *
, while the latter isSELECT (id, name, season)
.from
: Expects a value ofS1
,S2
, orS3
. This translates toFROM SX
.clauses
: A WHERE clause associated with a WHERE clause. Clauses are comma separated, and are formatted likeAND
-field
-SPECIFY OPERATOR
-VALUE
. For example,name
-LIKE
-test
,AND
-cardcategory
-IS
-legendary
. Or is not supported.
-
Rate Limit: 50 requests per 30 seconds.
-