Authentication

SLAAAD API는 x-api-key 헤더를 사용한 API 키 기반 인증을 사용합니다.

API Key Generation

You can generate API keys from the /app/api-keys page in the console. Generated keys are only shown once, so keep them safe.

요청 예시

curl -X GET https://api.slaaad.com/v1/public/terrains/1 \
  -H "x-api-key: YOUR_API_KEY"

응답 예시

{
  "terrains": [
    {
      "id": 1,
      "name": "Main Top Banner",
      "rows": 5,
      "cols": 10
    }
  ]
}