NovaProxy Docs
Orders

Manage Orders

List and retrieve details of your orders

username and password parameters are null when the order is just created. Once the order is updated from pending to active status, then the username and password returned with their actual usable values.

The returned threads parameter is not null for plan type duration and threads.

List Orders

Retrieve a list of your orders. There is no integrated pagination, all orders are being returned in descending order.

Endpoint: GET /orders

Response Example

[
    {
        "id": 249,
        "username": "99xhbk9uyvzry71",
        "password": "tmu1rfdkw47i90d",
        "threads": null,
        "initial_bandwidth_in_bytes": 1000000000,
        "remaining_bandwidth_in_bytes": 1000000000,
        "consumed_bandwidth_in_bytes": null,
        "expires_at": null,
        "status": "pending",
        "price": {
            "gross": 1.89,
            "discount": 0,
            "net": 1.89
        },
        "plan": PlanInstance,
        "created_at": "2026-01-04T21:19:12.000000Z",
        "updated_at": "2026-01-04T21:19:12.000000Z"
    },
    ...
]

Get Order

Retrieve details of a specific order.

Endpoint: GET /orders/{id}

Response Example

{
    "id": 249,
    "username": null,
    "password": null,
    "threads": null,
    "initial_bandwidth_in_bytes": 1000000000,
    "remaining_bandwidth_in_bytes": 1000000000,
    "consumed_bandwidth_in_bytes": null,
    "expires_at": null,
    "status": "pending",
    "price": {
        "gross": 1.89,
        "discount": 0,
        "net": 1.89
    },
    "plan": PlanInstance,
    "created_at": "2026-01-04T21:19:12.000000Z",
    "updated_at": "2026-01-04T21:19:12.000000Z"
}

On this page