1. Public
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
  • Distributions
    • List distributions
    • Get distribution details
    • List payouts
    • Get payout details
  • 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)
      GET
    • View unit details (guest)
      GET
    • Browse investment categories (guest)
      GET
    • View category details (guest)
      GET
  • 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. Public

View unit details (guest)

GET
/public/units/{id}
Get details of a specific investment unit for unauthenticated users (guests).
Visibility Rules:
Only returns units with status: active or pending
Returns 404 for units with status: sold_out or suspended
Rate Limiting: 60 requests per minute per IP address.

Request

Path Params

Header Params

Responses

🟢200
application/json
Unit details
Body

Example
{
    "success": true,
    "data": {
        "id": 1,
        "code": "UNIT-0001",
        "slug": "downtown-commercial-tower",
        "name": "Downtown Commercial Tower",
        "description": "Prime commercial property in the heart of downtown",
        "location": "Cairo, Egypt",
        "total_value": 50000000,
        "currency": "EGP",
        "expected_annual_return": 8.5,
        "management_fee_percentage": 2,
        "minimum_investment": 100000,
        "available_percentage": 35.5,
        "status": "active",
        "investment_status": "available",
        "funding_progress": 0.65,
        "featured_image": "/storage/units/tower.jpg",
        "gallery_images": [
            "/storage/units/tower-1.jpg",
            "/storage/units/tower-2.jpg"
        ],
        "category": {
            "id": 2,
            "name": "Commercial Real Estate",
            "icon": "building",
            "color": "#3B82F6",
            "requires_membership": true
        },
        "created_at": "2026-01-10T09:30:00Z"
    }
}
🟠404
🟠429
Modified at 2026-03-12 00:48:26
Previous
Browse investment units (guest)
Next
Browse investment categories (guest)
Built with