Investment Types represent the bucket of different financial products that are available for trade on the Pipevest platform.
This document will guide you on how to get investment type details.
Retrieving Investment Types
When requesting investment types details you can do so either by getting:
- A list of investment types
- An investment type by a given Id
List of Investment Types
curl --request GET \
--url https://api.pipevest.com/v1/investments\
--header 'Authorization: Bearer 123456' \
--header 'Signature: sig1=:OTEyMjY4...A5NTNDMEQ=:' \
--header 'Signature-Input: sig1=("Authorization" "Content-Digest" "Content-Length" "Content-Type" "X-Client-Id" "X-Idempotency-Key" "@method" "@target-uri" "@path" "@query");keyid="staging-pipevest-ed25519";created=1732893484;expires=1732893584' \
--header 'X-Client-Id: 123456' \
Investment Type by Id
curl --request GET \
--url https://api.pipevest.com/v1/investments/123456\
...
Entity Reference
| Property | Definition |
investmentId | Unique investment identifier |
investmentType | Investment type associated with the account |
isAvailable | Determines whether the instrument is available for trading |
createdAt | Created at unix timestamp |
updatedAt | Updated at unix timestamp |
Investment Types
Only INTERNATIONAL_STOCKS is currently available for trade.
| Name | Available | Definition |
INTERNATIONAL_STOCKS | Yes | Allows trading of international equities and stocks |
COMMODITY | No | Allows trading of raw materials and basic resources (i.e. - Gold, Mining, Agricultural Products) |
BONDS | No | Allows trading of bonds |
LOCAL_STOCKS | No | Allows trading of local equities and stocks |
FOREIGN_EXCHANGE | No | Allows trading of fiat currencies |
CRYPTO | No | Allows trading of crypto currencies |
Webhook Subscriptions
| Subscription | Definition | Domain |
INVESTMENT_TYPE | Only events that deal with investment types | Investments |
INVESTMENT_TYPE.CREATED | Triggered when an investment type is created | Investments |
INVESTMENT_TYPE.UPDATED | Triggered when an investment type is updated or there is news | Investments |