1. Units
ProfitFlow
  • Account
    • Authentication
      • Login
      • Register new user
      • Get current user
      • Logout
      • Refresh token
    • Password
      • Request password reset
      • Reset password
      • Change password
    • Profile
      • Update current user
    • Delete account
      DELETE
  • 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
  • Investment Requests
    • Create investment request
      POST
    • List investment requests
      GET
  • Portfolio
    • Get portfolio performance
      GET
    • Get transaction details
      GET
    • List transactions
      GET
  • KYC
    • List uploaded documents
      GET
    • Upload identity document
      POST
    • Get KYC status
      GET
  • Dashboard
    • Get investment marketplace
      GET
  • Distributions
    • List distributions
      GET
    • Get distribution details
      GET
    • List payouts
      GET
    • Get payout details
      GET
  • Statements
    • Download profit statement
    • Download tax records
    • Download portfolio summary
  • Notifications
    • List notifications
    • Get notification
    • Mark notification as read
    • Mark all as read
    • Register FCM token
    • Clear FCM token
  • Settings
    • Get app settings
    • Update app settings
  • Legal
    • Get privacy policy
    • Get terms of service
    • Get investment disclaimer
  • Marketplace
    • Get app configuration
  • Withdrawal Requests
    • Create withdrawal request
    • List withdrawal requests
  • Category Memberships
    • List memberships
    • Create membership
    • Available categories for enrollment
    • Get membership details
  • Public
    • Browse investment units (guest)
    • View unit details (guest)
    • Browse investment categories (guest)
    • View category details (guest)
  • Schemas
    • User
    • Category
    • Error
    • Unit
    • Investor
    • ValidationError
    • Portfolio
    • PaginationLinks
    • PaginationMeta
    • UnitDetail
    • InvestmentRequest
    • PublicUnit
    • InvestmentRequestWithUnit
    • Notification
    • WithdrawalRequest
    • CategoryMembership
    • Transaction
    • NotificationDataPayloads
    • WithdrawalRequestWithUnit
    • TransactionDetail
    • RegisterFcmTokenRequest
    • PortfolioPerformance
    • KycDocument
    • KycStatus
    • Dashboard
    • DashboardTrend
    • DashboardActivity
    • Marketplace
    • Distribution
    • FeaturedCategory
    • Payout
    • SimpleCategory
    • Settings
    • TopGainerUnit
    • NotificationSettings
    • NewListingUnit
    • LegalContent
    • AppConfig
    • IconOption
    • BadgeOption
    • ColorOption
    • PublicCategory
  1. Units

Get unit details

GET
/units/{id}
Get details of a specific investment unit by ID with enhanced computed fields.
Only active units can be retrieved.

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
Unit details
Body

Example
{
    "data": {
        "id": 1,
        "code": "UNIT-0001",
        "slug": "downtown-office-tower",
        "name": "Downtown Office Tower",
        "description": "Premium office space in the heart of downtown",
        "location": "Cairo, Egypt",
        "latitude": 30.0444,
        "longitude": 31.2357,
        "total_value": 5000000,
        "currency": "EGP",
        "available_percentage": 45.5,
        "sold_percentage": 54.5,
        "active_investors_count": 12,
        "minimum_investment": 50000,
        "expected_annual_return": 12.5,
        "status": "active",
        "launch_date": "2024-01-01",
        "maturity_date": "2027-01-01",
        "current_unit_price": 5000,
        "total_units": 1000,
        "available_units": 455,
        "risk_level": "low",
        "management_fee_percentage": 2,
        "featured_image": "https://example.com/images/unit-1.jpg",
        "gallery_images": [
            "https://example.com/images/unit-1-a.jpg",
            "https://example.com/images/unit-1-b.jpg"
        ],
        "category": {
            "id": 1,
            "name": "Commercial Real Estate",
            "icon": "building",
            "color": "#3B82F6"
        },
        "created_at": "2024-01-15T10:30:00+00:00",
        "updated_at": "2024-01-20T14:45:00+00:00",
        "investment_status": "available",
        "days_until_maturity": 117,
        "funding_progress": 0.75,
        "performance_history": {
            "periods": {
                "1D": 0,
                "1W": 0.5,
                "1M": 2.1,
                "3M": 6.3,
                "6M": 12.8,
                "1Y": 25.4
            }
        }
    }
}
🟠401
🟠404
Modified at 2026-03-12 00:48:26
Previous
List available units
Next
List investors
Built with