API 인증 가이드
인증 키 | API Key
사용 방법
curl --location --request POST '<ENDPOINT URL>' \
--header 'x-api-key: <API KEY>' \
--header 'Content-Type: application/json' \
--data-raw '<JSON BODY>'Example.
Python 에서 x-api-key Header
import requests
res = requests.post(
'<ENDPOINT URL>',
json={
# JSON BODY
},
headers={
'x-api-key': '<API KEY>'
}
)Last updated