Skip to main content
GET
/
portfolios
List portfolios visible to the authenticated user (owned + public)
curl --request GET \
  --url https://api.noonum.ai/v2/portfolios \
  --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>",
    "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

Response

A list of portfolios

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.

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