Hello, I'm using
https://selectapi.datascope.refinitiv.com/RestApi/v1/Extractions/ExtractWithNotes
to try to get the Basis, but I'm always getting null as response.
This is my request :
{ "ExtractionRequest": { "@odata .type": "#DataScope.Select.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest", "ContentFieldNames": [ "Universal Close Price", "Basis", "Trade Date" ], "IdentifierList": { "@odata .type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentIdentifierList", "InstrumentIdentifiers": [ { "Identifier": "MIBG-DA1-ES", "IdentifierType": "Ric", "Source": null } ], "ValidationOptions": null, "UseUserPreferencesForValidationOptions": false }, "Condition": { "QueryStartDate":"2026-02-16T00:00:00+01:00","QueryEndDate":"2026-02-16T00:00:00+01:00" } }}
and the response is :
"Contents": [ { "IdentifierType": "Ric", "Identifier": "MIBG-DA1-ES", "Universal Close Price": 29.29, "Basis": null, "Trade Date": "2026-02-16" }
While I can see well that the Basis has a value :
Could you please help with this ?
Best,