AWS Cost Explorer API charges with Boto3

Viewed 892

This document says

The AWS Cost Explorer API lets you directly access the interactive, ad-hoc query engine that powers AWS Cost Explorer. Each request will incur a cost of $0.01.

Does it hold true even if we access AWS Cost Explorer via Boto3? Boto3 documentation doesn't mention anything to that effect. This caused me confusion.

1 Answers

As per the AWS documentation here (the same link you provided), the AWS Cost Management services Cost Explorer API pricing is $0.01/request. This is true regardless of the programming language or SDK that you use to interact with the API.

Related