AIOZ Stream API
Payments

Payments

Retrieve user's usage

This API will get usage statistics for storage, delivery, and transcoding over a specified time period.

Field description:

  • storage (integer): The total storage used, in bytes.

  • storage_cost (string): The cost associated with the storage used, represented as a string.

  • delivery (integer): The total data delivered, in bytes.

  • delivery_cost (string): The cost associated with the data delivered, represented as a string.

  • transcode (integer): The total transcoding time, measured in seconds.

  • transcode_cost (string): The cost associated with transcoding, represented as a string.

GEThttps://api.aiozstream.network/api/payment/usage

Query

from The starting date time in UNIX timestamp format of the period you want
to The ending date time in UNIX timestamp format of the period you want

Headers

Authorization Bearer your_access_token_here

Response

200: OK
{
    "status": "success",
    "data": {
        "storage": 5663399103,
        "storage_cost": "2173368724836762",
        "delivery": 80194722668,
        "delivery_cost": "459922182307707",
        "transcode": 0,
        "transcode_cost": "0",
    }
}
curl --location 'https://api.aiozstream.network/api/payment/usage?from=1714232234&to=1824232234' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>'

Retrieve user's billings

This API will get detailed billing information for a specific user.

Field description:

  • storage (integer): The total storage used, in bytes.

  • storage_cost (string): The cost associated with the storage used, represented as a string.

  • delivery (integer): The total data delivered, in bytes.

  • delivery_cost (string): The cost associated with the data delivered, represented as a string.

  • transcode (integer): The total transcoding time, measured in seconds.

  • transcode_cost (string): The cost associated with transcoding, represented as a string.

GEThttps://api.aiozstream.network/api/payment/billings

Query

limit The number of records to skip before starting to return the results (defa
offset The maximum number of records to return in a query (default: 25, max: 100)
orderBy The field or property used to determine how the result set should be sorted. Use "asc" for ascending order and "desc" for descending order.

Headers

Authorization Bearer your_access_token_here

Response

200: OK
{
    "status": "success",
    "data": {
        "total": 1,
        "billings": [
            {
                "storage": 5663399103,
                "transcode": 0,
                "delivery": 36653731937,
                "storage_cost": "375602791436316",
                "transcode_cost": "0",
                "delivery_cost": "356384235623451",
                "created_at": "2024-09-12T23:00:00+07:00"
            }
        ]
    }
}
curl --location 'https://api.aiozstream.network/api/payment/billings?limit=10&offset=0&orderBy=desc' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>'

Retrieve user's top ups

This API will get top ups information for a specific user.

Field description:

  • storage (integer): The total storage used, in bytes.

  • storage_cost (string): The cost associated with the storage used, represented as a string.

  • delivery (integer): The total data delivered, in bytes.

  • delivery_cost (string): The cost associated with the data delivered, represented as a string.

  • transcode (integer): The total transcoding time, measured in seconds.

  • transcode_cost (string): The cost associated with transcoding, represented as a string.

GEThttps://api.aiozstream.network/api/payment/billings

Query

limit The number of records to skip before starting to return the results (defa
offset The maximum number of records to return in a query (default: 25, max: 100)
orderBy The field or property used to determine how the result set should be sorted. Use "asc" for ascending order and "desc" for descending order.

Headers

Authorization Bearer your_access_token_here

Response

200: OK
{
    "status": "success",
    "data": {
        "total": 1,
        "billings": [
            {
                "storage": 5663399103,
                "transcode": 0,
                "delivery": 36653731937,
                "storage_cost": "375602791436316",
                "transcode_cost": "0",
                "delivery_cost": "356384235623451",
                "created_at": "2024-09-12T23:00:00+07:00"
            }
        ]
    }
}
curl --location 'https://api.aiozstream.network/api/payment/billings?limit=10&offset=0&orderBy=desc' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>'