Skip to main content
GET
/
api
/
v1
/
external
/
kits
List available kits
curl --request GET \
  --url https://rts-builder.slayers.tech/api/v1/external/kits \
  --header 'X-API-Key: <api-key>'
{
  "kits": [],
  "total": 0
}

List available kits

Notes

  • The response always includes kits and total.
  • A 200 with an empty kits array means the key authenticated successfully but has no externally visible kits.
  • In live testing, this also occurred for a newly created team API key after a kit had been marked exposed, which suggests an additional access grant or backend entitlement step beyond simply toggling exposure.

Method behavior

Observed method handling:
  • GET /api/v1/external/kits returns 200
  • HEAD /api/v1/external/kits returns 404
  • OPTIONS /api/v1/external/kits returns 404

Authorizations

X-API-Key
string
header
required

Team-scoped RTS Builder API key.

Response

Authenticated request succeeded.

kits
object[]
required
total
integer
required
Required range: x >= 0