Reference
API
runlot 컨트롤 플레인의 REST API입니다. 경로 78개와 작업 107개를 제공합니다.
The source of truth for this page is
proto/openapi.yaml. The content is generated from that source when the docs are built.Making requests
Every request requires a Bearer token. The token saved by runlot login can be found in ~/.runlot/credentials.json.
curl -H "Authorization: Bearer $RUNLOT_TOKEN" \
https://api.runlot.io/v1/orgsThe API version is 1.0.0, and the specification follows OpenAPI 3.1.0.
Error response format
Every failed response uses the same structure. Branch on code in your program; the human-readable message can change, so do not use it as a condition. See Error codes for the full list.
{ "error": { "code": "not_found", "message": "프로젝트를 찾을 수 없습니다" } }API categories
See Schemas for the structure of request bodies and responses.