Skip to main content
GET
/
portfolios
/
{portfolioId}
Get a specific portfolio (owner or public)
curl --request GET \
  --url https://api.noonum.ai/v2/portfolios/{portfolioId} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "Sat, 05 Apr 2025 17:43:37 GMT",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "public": true,
  "updated_at": "Mon, 07 Apr 2025 18:39:41 GMT",
  "user_id": "<string>",
  "holdings": [
    {
      "created_at": "Sat, 05 Apr 2025 17:43:37 GMT",
      "updated_at": "Mon, 07 Apr 2025 18:39:41 GMT",
      "weight": 0.5,
      "exchange": "<string>",
      "industry": "<string>",
      "market": "<string>",
      "market_cap": 123,
      "name": "<string>",
      "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "raw_payload": {},
      "sector": "<string>",
      "security_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "symbol": "<string>"
    }
  ],
  "metadata": {},
  "source": "<string>",
  "tags": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Enter 'Bearer' followed by a space and then your JWT or API Key. Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... or Bearer YOUR_API_KEY_HERE

Path Parameters

portfolioId
string<uuid>
required

UUID of the portfolio

Response

Portfolio detail

created_at
string
required

Timestamp when the portfolio was created (RFC 7231 HTTP-date string).

Example:

"Sat, 05 Apr 2025 17:43:37 GMT"

id
string<uuid>
required
name
string
required
public
boolean
required
updated_at
string
required

Timestamp when the portfolio was last updated (RFC 7231 HTTP-date string).

Example:

"Mon, 07 Apr 2025 18:39:41 GMT"

user_id
string | null
required

Owner identifier; null when requester is not the owner.

holdings
object[]
required
metadata
object
source
string | null
tags
string[] | null