Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Using the Rest API the get the BOM of a part like this:
```
curl -X GET --header 'Accept: application/json' 'http://domain.com/Windchill/servlet/odata/v5/ProdMgmt/Parts('OR%3Awt.part.WTPart%3A123456789')/Uses?%24count=false'
```
I get results containing "ID": "OR:wt.part.WTPartUsageLink:1234567890".
How can I get the part attributes of the linked part like I get them using
```
curl -X GET --header 'Accept: application/json' 'http://domain.com/Windchill/servlet/odata/v5/ProdMgmt/Parts?%24select=ID&%24filter=Number%20eq%20'ABC123'&%24count=false'
```
Is this what you are looking for?