API Key Check
GET/v2/center/auth/status
API to check the key issued through the Waiker Dashboard and to query the list of products assigned to the key.
You can check if the key is working properly through the Key Check API.
The return value is the list of APIs that can be used with the key.
Request
Header Parameters
Default value: KR
Country Code (KR or US)
Default value: KRW
Currency Code (KRW or USD)
Default value: EN
Language Code (KO or EN)
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object
Service status information included in the Product key
Number of services included in the Product key
serviceList
object[]
List of services included in the Product key
Service ID
Service Type (e.g., DATASET)
Service Name
Service Country Code (e.g., KR, US)
Service Category (e.g., News, Equity Transactions)
Service Start Date (e.g., 2024-05-29T00:00:00Z)
Service end date (e.g., 2024-07-31T00:00:00Z)
API response code (e.g., 0)
HTTP status codes (e.g., 200, 401, 403, 500)
Response message (e.g., SUCCESS)
Timestamp of the response time (e.g., 1722220470)
{
"data": {
"response": 200,
"responseCode": "AUTHENTICATED",
"serviceStatus": {
"serviceCount": 2,
"serviceList": [
{
"id": 346,
"itemType": "DATASET",
"itemName": "AI Insider Trading",
"itemCountry": "KR",
"category": "Shareholder Transactions",
"useStartDt": "2024-05-29T00:00:00Z",
"useEndDt": "2024-07-31T00:00:00Z"
},
{
"id": 347,
"itemType": "DATASET",
"itemName": "sLM AI News Websocket",
"itemCountry": "US",
"category": "News",
"useStartDt": "2024-05-29T00:00:00Z",
"useEndDt": "2024-07-31T00:00:00Z"
}
]
}
},
"code": "0",
"status": 200,
"message": "SUCCESS",
"timestamp": "1722220470"
}