aws billing information using aws java sdk

Updating the answer as it is no longer the correct one. AWS has released the CostExplorer API for the Java SDK. You can find the documentation here: https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/index.html

public GetCostAndUsageResult getCostAndUsage(GetCostAndUsageRequest request) 

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master accounts in an organization in AWS Organizations have access to all member accounts.


There are no APIs to get AWS billing information. Instead what you can do is:

  1. Turn on the detailed billing report (from dashboard)
  2. Configure what kind of billing reports you want
  3. AWS will start pushing billing info as CSV files to a (pre)configured bucket several times an hour
  4. Use REST API or S3 Java API to get the information from the bucket when needed.

For more information: See here


In Addition to @helloV answer, if you want to view your AWS Billings across days/hours or even minutes. You can use aws-elk-billing tool. Currently the pull request is awaiting to be merged with the main repository. It uses ELK Stack to visualise the AWS Cost and Usage Report

(Although it might still work with AWS Detailed billing report which contains some extra columns along with all the columns from AWS Cost and Usage Report).

Here's a full screenshot of the Kibana Dashboard.

AWS Billing Kibana Dashboard


You can get Cost and Usage Data using AWS Java SDK. Here is a functional sample.

import com.amazonaws.auth.AWSStaticCredentialsProvider;

import com.amazonaws.auth.profile.ProfileCredentialsProvider;

import com.amazonaws.regions.Regions;

import com.amazonaws.services.costexplorer.AWSCostExplorer;

import com.amazonaws.services.costexplorer.AWSCostExplorerClientBuilder;

import com.amazonaws.services.costexplorer.model.DateInterval;

import com.amazonaws.services.costexplorer.model.GetCostAndUsageRequest;

import com.amazonaws.services.costexplorer.model.GetCostAndUsageResult;

public class AwsCostExplorer {

    private static AWSCostExplorer awsCostExplorerClient;

    public static void main(String arg[]){

AWSCostExplorerClientBuilder builder =AWSCostExplorerClientBuilder.standard();

        awsCostExplorerClient = builder.withCredentials(new AWSStaticCredentialsProvider(new ProfileCredentialsProvider("profile-name").getCredentials()))
                .withRegion(Regions.US_EAST_1).build();

        GetCostAndUsageRequest request = new GetCostAndUsageRequest()
                .withTimePeriod(new DateInterval().withStart("2018-07-01").withEnd("2018-07-25"))
                .withGranularity("DAILY")
                .withMetrics("BlendedCost");

        GetCostAndUsageResult result = awsCostExplorerClient.getCostAndUsage(request);

        result.getResultsByTime().forEach(resultByTime -> {
            System.out.println(resultByTime.toString());
        });

        awsCostExplorerClient.shutdown();
    }
}