Search + K

Command Palette

Search for a command to run...

Sign In

Retrieve private app daily API usage

GET /account-info/v3/api-usage/daily/private-apps
Copy endpoint
https://api.hubapi.com

Retrieve the daily API usage for private apps in the account, along with information about usage limits.

Responses

200 application/json

successful operation

interface CollectionResponseApiUsage {
paging?: Paging
interface Paging {
next?: NextPage;
prev?: PreviousPage;
}
;
results: ApiUsage

API usage and limits information for a HubSpot account.

interface ApiUsage {
collectedAt: string;
currentUsage: number;
fetchStatus: "CACHED" | "FAILURE" | "NOTFOUND" | "SUCCESS" | "TIMEOUT";
name: string;
resetsAt?: string;
usageLimit: number;
}
[]
;
}
default */*

An error occurred.

interface Error {
category: string;
context?: { };
correlationId: string;
errors?: ErrorDetail
interface ErrorDetail {
code?: string;
context?: { };
in?: string;
message: string;
subCategory?: string;
}
[]
;
links?: { };
message: string;
subCategory?: string;
}