API endpoint:
GET /api/customer/balance
Sample Response:
{"balance":456,"pending_costs":123}
- balance : the amount of money in your account
- pending_costs : the amount of money you will be billed for, as of this moment, in the next billing cycle
Shell
curl "https://brightdata.com/api/customer/balance" -H "Authorization: Bearer API_TOKEN"
Node.js
#!/usr/bin/env node
require('request-promise')({
url: 'https://brightdata.com/api/customer/balance',
headers: {'Authorization': 'Bearer API_TOKEN'},
}).then(function(data){ console.log(data); },
function(err){ console.error(err); });
Java
package example; import org.apache.http.HttpHost; import org.apache.http.client.fluent.*; public class Example { public static void main(String[] args) throws Exception { String res = Executor.newInstance() .addHeader("Authorization", "Bearer API_TOKEN")
.execute(Request.Get("https://brightdata.com/api/customer/balance"))
.returnContent().asString(); System.out.println(res) }
}
C#
using System; using System.Net; using System.Net.Http; using System.Net.Http.Headers; public class Program { public static async Task Main() { var client = new HttpClient(); var requestMessage = new HttpRequestMessage { Method = HttpMethod.Get,
RequestUri = new Uri("https://brightdata.com/api/customer/balance"), Headers = { {"Authorization", "Bearer API_TOKEN"} } }; var response = await client.SendAsync(requestMessage); var responseString = await response.Content.ReadAsStringAsync(); Console.WriteLine(responseString); } }
Python
#!/usr/bin/env python
print('If you get error "ImportError: No module named requests", please install it:\n$ sudo pip install requests');
import requests
headers = {'Authorization': 'Bearer API_TOKEN'}
r = requests.get('https://brightdata.com/api/customer/balance', headers=headers)
print(r.content)