Get Trading Period Detail
Returns the trading-period detail for the given id, including per-product totals.
Parameters
- trading_period_id
- Public trading-period identifier — the period's UTC start time at minute precision (e.g. 2026-07-29T20:00), as returned by the trading-periods list and carried on transactions.
- api_key
- Resolved Partner API key, providing the financial institution scope for the lookup.
Returns
Trading-period detail with macro totals and the per-product breakdown.
Raises
- HTTPException
- 404 Not Found when no trading period with that id exists within the partner's financial institution.
Authorization
APIKeyHeader x-api-key<token>
In: header
Path Parameters
trading_period_id*Trading Period Id
Response Body
application/json
application/json
curl -X GET "https://partner-api.investifi.com/v1/trading-periods/string/"{
"trading_period_id": "string",
"start_time": "2019-08-24T14:15:22Z",
"end_time": "2019-08-24T14:15:22Z",
"status": "open",
"total_transaction_volume": "string",
"total_transaction_fees": "string",
"total_gl_volume": "string",
"products": [
{
"product": "crypto",
"status": "open",
"total_transaction_volume": "string",
"total_transaction_fees": "string"
}
],
"settlements": [
{
"leg": "crypto",
"direction": "pull",
"amount": "string",
"status": "open"
}
]
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}
