How to get the current customerPrice for an IAP?

I am new to the whole Apple API, sorry if this question is too fundamental. I find the documentation confusing.

I need to retrieve the current customerPrice in US$ for the USA for one specific IAP in my app.

I'm trying to use

https://api.appstoreconnect.apple.com/v2/inAppPurchases/{iap_id}/pricePoints?filter[territory]=USA&limit=200

I get a list of all pricePoints for my IAP. OK, so far so good.

How do I filter for the current price point only?

How do I retrieve the customerPrice for that price point?

Thank you very much for the help :)

UPDATE:

After a lot of tries, I've found this, but for some reason, it doesn't give me any of the fields[inAppPurchasePricePoints] fields:

`https://api.appstoreconnect.apple.com/v1/inAppPurchasePriceSchedules/{iap_id}/manualPrices?include=inAppPurchasePricePoint&fields[inAppPurchasePricePoints]=customerPrice`

This is the response I'm getting:

`{
	'type': 'inAppPurchasePrices',
	'id': 'super_long_id',
	'attributes': {
		'startDate': None,
		'endDate': '2023-07-12',
		'manual': True
	},
	'relationships': {
		'inAppPurchasePricePoint': {
			'data': {
				'type': 'inAppPurchasePricePoints',
				'id': 'long_id'
			}
		}
	},
	'links': {
		'self': 'https://api.appstoreconnect.apple.com/v1/inAppPurchasePrices/super_long_id'
	}
}`

Why doesn't the response include the customerPrice I'm asking for? What am I missing here?

Also, interestingly, if I try to follow the self link, I get a 403.

Thank you for your patience and support!

How to get the current customerPrice for an IAP?
 
 
Q