Get Volume Usage

This API is used to get volume billing usage data with 5 minutes data sample.

Note: This API will only return the bandwidth usage data of the logs that are 48 hours earlier than current time.

1. Request Definition

  • API URL
https://cdn-api.swiftfederation.com/v1.0/usage/volume
  • Request Method
POST
  • Request Header

Refer to HTTP Request Headers

  • Request Body

Request Body Data Format: JSON

Field Required Type Description
domains Mandatory string[] Array of domain names.
startTime Mandatory string Start time. Format yyyy-MM-ddTHH:mm:ssZ UTC time.
endTime Mandatory string End time. Format yyyy-MM-ddTHH:mm:ssZ UTC time. Interval between start time and end time cannot be longer than 24 hours.
fillFixedTime Optional boolean Boolean value if need to fill in zero value for empty data. Values: true or false. Default value: false.
  • Request Body Example
{
    "domains": [
        "www.example1.com",
        "www.example2.com"
    ],
    "startTime": "2018-03-29T17:35:00Z",
    "endTime": "2018-03-29T17:45:00Z",
    "fillFixedTime": false
}


2. Response Definition

  • Response Header

Refer to HTTP Response Headers

  • Response Body
Field Type Description
domain string Name of domain.
volumes Volume[] List of volume data with 5 minutes interval.
Volume Definition
timestamp string Format yyyy-MM-ddTHH:mm:ssZ UTC time. E.g. 2018-03-29T17:35:00Z will return data from 2018-03-29T17:35:00Z to 2018-03-29T17:39:59Z.
value long Volume data within 5 minutes. Format will be like 32342331.
  • Response Body Example
[
    {
        "domain": "www.example1.com",
        "volumes": [
            {
                "timestamp": "2018-03-29T17:35:00Z",
                "value": 32342331
            }
        ]
    },
    {
        "domain": "www.example2.com",
        "volumes": [
            {
                "timestamp": "2018-03-29T17:35:00Z",
                "value": 32342331
            }
        ]
    }
]
           Updated 2019-06-06 05:54:40

results matching ""

    No results matching ""