To open an account, please send us an email at [email protected]
While we don’t currently offer an unlimited plan, all of our plans have an auto-recharge option that triggers a new billing cycle if your quota runs out, and ensures your account will run continuously without billing-related limitations.
Optional: If your use case entails special data requirements, contact your account manager / sales at
Yes! We have a full where users can access usage reports and statistics, perform account functions, manage their pipelines, and more!
All of the same functionality and reports are available programmatically through our
Nimble measures bandwidth usage in two ways:
Total bandwidth per pipeline
Daily bandwidth
You can view your total bandwidth usage, usage per pipeline, and view daily reports via the , or using the .
To see your total bandwidth usage per pipeline, send a GET request to the Admin API at this endpoint:
https://api.nimbleway.com/api/v1/account/pipeline
You will receive a list of pipelines, each of which has a property titled “spent_gb” which represents that pipeline’s total bandwidth usage.
To get a daily usage report, send a GET request to:
https://api.nimbleway.com/api/v1/account/reports/daily-usage?fromDate=
<startDate>
&toDate=
<EndDate>
You can also see this report on a pipeline level using: https://api.nimbleway.com/api/v1/account/pipeline/
<pipelineName>
/reports/daily-usage?fromDate=
<startDate>
&toDate=
<EndDate>
Both our and allow users to view account information, create and manage pipelines, access usage statistics, and more!
To view your account’s remaining credits, send a GET request to https://api.nimbleway.com/api/v1/account/remaining-credits
In the resulting list, your remaining credits will be available under “remaining_budget_usd”.
You can generate a new Admin API password by sending a PUT request to: https://api.nimbleway.com/api/v1/account/users/support%40nimbleway.com/password
For example:
curl -X PUT “https://api.nimbleway.com/api/v1/account/users/<UserName>/password” -H “accept: application/json” -H “Authorization: bearer <token>”
Pipelines are Nimble’s solution for a more streamlined approach to managing business use cases. With pipelines, you can configure default session settings such as target country and IP rotation once, and all requests made through a particular pipeline automatically inherit those parameters. You can always override the default settings by adding the settings parameters to your request.
Pipeline Advantages:
Set your country and IP rotation once.
Monitor performance and statistics per pipeline.
Optimized IP selection according to the pipeline’s session profile and targeted sites.
Set budget caps per pipeline.
Coming soon: permission control per pipeline.
New pipelines can be created through the , or by using the /account/pipelines endpoint of our Admin API. When creating a new pipeline, you can set the name, proxy type, and geotargeting settings of the pipeline (these can always be changed later!).
For a full walkthrough, see our .