워크스페이스 사용량 통계 조회
curl --request POST \
--url https://api.pubrio.com/profile/usage \
--header 'Content-Type: application/json' \
--header 'pubrio-api-key: <api-key>' \
--data '{}'import requests
url = "https://api.pubrio.com/profile/usage"
payload = {}
headers = {
"pubrio-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'pubrio-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.pubrio.com/profile/usage', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pubrio.com/profile/usage",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"pubrio-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pubrio.com/profile/usage"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("pubrio-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.pubrio.com/profile/usage")
.header("pubrio-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pubrio.com/profile/usage")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["pubrio-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"data": {
"api_monthly_usage": 0,
"api_daily_usage": 0,
"api_hourly_usage": 0,
"api_last_refreshed": "2024-11-13T10:01:13.051Z",
"portal_monthly_usage": 848,
"portal_daily_usage": 163,
"portal_hourly_usage": 4,
"portal_last_refreshed": "2024-11-13T10:01:13.051Z",
"max_api_monthly_query": 0,
"max_api_daily_query": 0,
"max_api_hourly_query": 0,
"max_portal_monthly_query": 60000,
"max_portal_daily_query": 2000,
"max_portal_hourly_query": 1000,
"total_max_api_monthly_query": 0,
"total_max_api_daily_query": 0,
"total_max_api_hourly_query": 0,
"total_max_portal_monthly_query": 2040000,
"total_max_portal_daily_query": 68000,
"total_max_portal_hourly_query": 34000,
"is_api_access_available": false,
"is_quota_sharing_enabled": true,
"is_quota_sharing_available": true
}
}{
"code": 40001,
"message": "오류 코드 및 메시지는 상황에 따라 다를 수 있습니다. 자세한 내용은 문서를 참조하세요.",
"details": {}
}{
"error": "요청 빈도가 제한을 초과했습니다. 잠시 후 다시 시도해주세요."
}{
"error": "요청을 처리하는 중 서버에서 예기치 않은 오류가 발생했습니다"
}팀(워크스페이스)
팀 사용 현황
현재 워크스페이스 프로필의 크레딧 사용량 및 할당량 통계를 조회합니다.
POST
/
profile
/
usage
워크스페이스 사용량 통계 조회
curl --request POST \
--url https://api.pubrio.com/profile/usage \
--header 'Content-Type: application/json' \
--header 'pubrio-api-key: <api-key>' \
--data '{}'import requests
url = "https://api.pubrio.com/profile/usage"
payload = {}
headers = {
"pubrio-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'pubrio-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.pubrio.com/profile/usage', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pubrio.com/profile/usage",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"pubrio-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pubrio.com/profile/usage"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("pubrio-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.pubrio.com/profile/usage")
.header("pubrio-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pubrio.com/profile/usage")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["pubrio-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{}"
response = http.request(request)
puts response.read_body{
"data": {
"api_monthly_usage": 0,
"api_daily_usage": 0,
"api_hourly_usage": 0,
"api_last_refreshed": "2024-11-13T10:01:13.051Z",
"portal_monthly_usage": 848,
"portal_daily_usage": 163,
"portal_hourly_usage": 4,
"portal_last_refreshed": "2024-11-13T10:01:13.051Z",
"max_api_monthly_query": 0,
"max_api_daily_query": 0,
"max_api_hourly_query": 0,
"max_portal_monthly_query": 60000,
"max_portal_daily_query": 2000,
"max_portal_hourly_query": 1000,
"total_max_api_monthly_query": 0,
"total_max_api_daily_query": 0,
"total_max_api_hourly_query": 0,
"total_max_portal_monthly_query": 2040000,
"total_max_portal_daily_query": 68000,
"total_max_portal_hourly_query": 34000,
"is_api_access_available": false,
"is_quota_sharing_enabled": true,
"is_quota_sharing_available": true
}
}{
"code": 40001,
"message": "오류 코드 및 메시지는 상황에 따라 다를 수 있습니다. 자세한 내용은 문서를 참조하세요.",
"details": {}
}{
"error": "요청 빈도가 제한을 초과했습니다. 잠시 후 다시 시도해주세요."
}{
"error": "요청을 처리하는 중 서버에서 예기치 않은 오류가 발생했습니다"
}⌘I

