Unblocker

Get all users plans by criteria.

post

Get all users plans by criteria.

Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationanyOptional

token

Body
start_datestringRequired

start date of the plan

Example: 2025-01-01
end_datestringRequired

end date of the plan

Example: 2026-01-01
plan_statusstringRequired

the status of the plan (active, inactive, standby)

Example: active
Responses
200

Array of Plans

application/json
post
/unblocker/usage
POST /v1/unblocker/usage HTTP/1.1
Host: customers-api.netnut.io
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 74

{
  "start_date": "2025-01-01",
  "end_date": "2026-01-01",
  "plan_status": "active"
}
{
  "end_date": "2026-01-01",
  "start_date": "2025-01-01",
  "plan_status": false,
  "display_name": "some name",
  "total_requests_used": 3753324,
  "request_plan_size_M": 5,
  "total_gb_used": 5,
  "gb_plan_size": 5
}

Get all users traffic by criteria.

post

Get all users traffic by criteria.

Authorizations
AuthorizationstringRequired
Header parameters
AuthorizationanyOptional

token

Body
startDatestringRequired

start date of the traffic

Example: 2025-01-01
endDatestringRequired

end date of the traffic

Example: 2026-01-01
countriesanyOptional

traffic for a specific targeted country (array of 2 letter filter for specific countries)

Example:
splitByCountrybooleanOptional

group by countries

Example: false
splitByDatebooleanOptional

group by date

Example: false
Responses
200

Array of Plans

application/json
post
/unblocker/traffic
POST /v1/unblocker/traffic HTTP/1.1
Host: customers-api.netnut.io
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 109

{
  "startDate": "2025-01-01",
  "endDate": "2026-01-01",
  "countries": [
    ""
  ],
  "splitByCountry": false,
  "splitByDate": false
}
{
  "totalRequests": 59366,
  "successRequests": 9366,
  "dataInBytes": 13189047,
  "successPercentage": 6,
  "date": "2025-10-04T00:00:00.000Z",
  "statusCode200": 9366,
  "statusCode407": 0,
  "statusCode502": 0,
  "statusCode503": 0,
  "statusCode404": 0,
  "statusCode403": 0,
  "statusCode401": 0,
  "statusCodeOther": 50000,
  "product_type_id": 24
}

Last updated