인증 (API Key)

모든 API 요청은 API 키를 사용하여 인증합니다. API 키는 콘솔 → 계정 설정 → API Keys에서 발급받을 수 있습니다.

인증 방식

요청 헤더에 Authorization: Bearer {API_KEY}를 포함합니다.

bash — cURL
curl https://api.digitallayer.cloud/v1/instances \
  -H "Authorization: Bearer dlc_live_xxxxxxxxxxxx" \
  -H "Content-Type: application/json"

응답 형식

json
{
  "data": [...],
  "meta": {
    "total": 3,
    "page": 1,
    "per_page": 20
  }
}