Account Settings and Security

chevron-rightHow can I open a Nimble account?hashtag

To open an account, please send us an email at [email protected]

chevron-rightIs there an unlimited bandwidth plan?hashtag

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 [email protected]envelope

chevron-rightDoes Nimble have a user dashboard?hashtag

Yes! We have a full User Dashboardarrow-up-right 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 Admin API.arrow-up-right

chevron-rightCan I check my bandwidth usage in real-time?hashtag

Nimble measures bandwidth usage in two ways:

  1. Total bandwidth per pipeline

  2. Daily bandwidth

You can view your total bandwidth usage, usage per pipeline, and view daily reports via the User Dashboardarrow-up-right, or using the Admin APIarrow-up-right.

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>

chevron-rightWhat timezone do Nimble’s reports use?hashtag

All of our reports are set to UTC.

chevron-rightHow do I manage my Nimble account?hashtag

Both our User Dashboardarrow-up-right and Admin APIarrow-up-right allow users to view account information, create and manage pipelines, access usage statistics, and more!

chevron-rightHow can I see my remaining credits?hashtag

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”.

chevron-rightHow do I change my Admin API password?hashtag

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>”

chevron-rightHow do pipelines work?hashtag

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:

  1. Set your country and IP rotation once.

  2. Monitor performance and statistics per pipeline.

  3. Optimized IP selection according to the pipeline’s session profile and targeted sites.

  4. Set budget caps per pipeline.

  5. Coming soon: permission control per pipeline.

chevron-rightHow do I add a new pipeline?hashtag

New pipelines can be created through the User Dashboardarrow-up-right, 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 Admin API Documentationarrow-up-right.