Get Domain Request Count [New] - GetUcdnDomainRequestNumV3
Overview
Get Domain Request Count
Definition
Public Parameters
Parameter Name | Type | Description Information | Required |
---|---|---|---|
Action | string | Corresponding API command name, the current API is GetUcdnDomainRequestNumV3 . | Yes |
PublicKey | string | The user's public key can be obtained from Console (opens in a new tab) | Yes |
Signature | string | User signature generated based on public key and API command, see Signature Algorithm | Yes |
Request Parameters
Parameter Name | Type | Description Information | Required |
---|---|---|---|
ProjectId | string | Project ID. If not filled in, the default project is used, sub-accounts must be filled in. Please refer to the GetProjectList interface. | No |
Type | int | Time granularity (0 represents a 5-minute granularity, 1 represents a 1-hour granularity, 2 represents a daily granularity, 3= per minute) | Yes |
BeginTime | int | The start time of the query, in Unix Timestamp format. | Yes |
EndTime | int | The end time of the query, in Unix Timestamp format. | Yes |
DomainId.N | string | Domain ID, the ID generated when creating a domain. Default to all domains. | No |
Areacode | string | The query area 'cn' represents domestic, 'abroad' represents overseas, only supports domestic. | No |
Protocol | string | Protocol, when IsDcdn=false, you can pass http, https, or not pass to check the bandwidth of all protocols. If IsDcdn=true, you can pass http_dynamic, http_static, https_dynamic, https_static, quic_dynamic, quic_static, websocket, and support querying multiple protocols at the same time separated by commas. | No |
IsDcdn | boolean | Is acceleration enabled for the entire site, default is false | No |
Response Field
Field Name | Type | Description Information | Required |
---|---|---|---|
RetCode | int | Return status code. If it is 0, it means successful return. If it is not 0, it means failure. | Yes |
Action | string | Operation command name. | Yes |
Message | string | Returns an error message, providing detailed description when RetCode is non-zero. | No |
RequestList | array[RequestInfoV2] | Request number instance table. | No |
Data Model
RequestInfoV2
Field Name | Type | Description Information | Required |
---|---|---|---|
Time | int | Time point for bandwidth acquisition. Format: Timestamp | No |
CdnRequest | float | Returns the sum of the requests received by the CDN within the specified time interval. | No |
Example
Request Example
https://api.surfercloud.com/?Action=GetUcdnDomainRequestNumV3
&ProjectId=AYZTzHAS
&Type=2
&BeginTime=8
&EndTime=5
&DomainId.n=vUdMJHuU
&Areacode=QklBnnEs
&Protocol=IhnvpTpf
&IsDcdn=true
Response Example
{
"Action": "GetUcdnDomainRequestNumV3Response",
"RequestList": [
{
"CdnRequest": 3,
"OriginRequest": 2,
"Time": 4
}
],
"RetCode": 0
}