ProfitFlow
  1. Investors
ProfitFlow
  • Authentication
    • Login
      POST
    • Logout
      POST
  • Categories
    • List categories
      GET
    • Get category
      GET
  • Units
    • List available units
      GET
    • Get unit details
      GET
  • Investors
    • List investors
      GET
    • Get investor details
      GET
    • Get investor portfolio
      GET
  • Schemas
    • User
    • Category
    • Error
    • Unit
    • Investor
    • ValidationError
    • Portfolio
    • PaginationLinks
    • PaginationMeta
  1. Investors

Get investor portfolio

GET
/investors/{id}/portfolio
Get portfolio statistics and investment details for a specific investor.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Header Params

Responses

🟢200
application/json
Portfolio statistics
Body

Example
{
    "success": true,
    "data": {
        "total_invested": 250000,
        "units_owned": 3,
        "average_ownership": 15.5,
        "expected_annual_return": 31250,
        "units": [
            {
                "id": 1,
                "code": "UNIT-0001",
                "name_en": "Downtown Office Tower",
                "name_ar": "برج المكاتب وسط المدينة",
                "ownership_percentage": 10.5,
                "invested_amount": 100000,
                "status": "active",
                "expected_annual_return": 12.5
            }
        ]
    }
}
🟠401
🟠404
Modified at 2026-01-31 12:19:15
Previous
Get investor details
Next
User
Built with