GET/ainote/quota
도메인의 클로바노트 사용량 현황을 조회한다. 서비스 계정일 경우에만 이용 가능하다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
ainote
ainote.read
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| recognitionQuota | object (recognitionQuota) | |
| summaryQuota | object (summaryQuota) |
| Property | Type | Description |
|---|---|---|
| total | integer | 해당 도메인의 전체 STT 쿼터(단위: 초) |
| remain | integer | 해당 도메인의 잔여 STT 쿼터(단위: 초) |
| Property | Type | Description |
|---|---|---|
| total | integer | 해당 도메인의 전체 요약 쿼터(단위: 회) |
| remain | integer | 해당 도메인의 잔여 요약 쿼터(단위: 회) |
Example 1
1{2 "recognitionQuota": {3 "total": 1800000,4 "remain": 17961745 },6 "summaryQuota": {7 "total": 750,8 "remain": 7479 }10}