You can send a request asking to display attribute values assigned on records.
<attribute name="AMOUNT_SOLD" type="mdex:double">550.370000</attribute>
The name field lists the name of the standard or managed attribute, while the type field shows the data type of that attribute. Managed attributes also have the displayName that is used for UI purposes.
<cs:Record> <cs:attribute name="AFFINITY_CARD" type="mdex:boolean">false</cs:attribute> <cs:attribute name="AMOUNT_SOLD" type="mdex:double">550.370000</cs:attribute> <cs:attribute name="CALENDAR_MONTH_DESC" type="mdex:string">2000-03</cs:attribute> <cs:attribute name="Channel" type="mdex:string" displayName="Direct Sales">3</cs:attribute> <cs:attribute name="PROMO_FK" type="mdex:long">999</cs:attribute> </cs:Record>
Your front-end application can iterate through the record, extract the attribute values for the record, and display a table containing the results.