The ContractDetails class does indeed contain a Maturity field in the source code.
?
In the C-Sharp API it’s defined like this:
?????? /**
??????? * @brief he date on which the issuer must repay the face value of the bond.
??????? * This field is currently not available from the TWS API.
??????? * For Bonds only. Not currently implemented due to bond market data restrictions.
??????? */
?????? public string Maturity
?????? {
?????????? //! @cond
?????????? get;
?????????? set;
?????????? //! @endcond
?????? }
So it looks like you’re out of luck. All you get is a blank field.
Richard