---
title: "Get Agent Portfolios"
method: GET
path: "/api/v1/agent-portfolios"
tags: ["Agent Portfolios"]
---

# Get Agent Portfolios

`GET /api/v1/agent-portfolios`

**Rate limit:** 60 requests per 60 seconds. This is the **default shared quota** — it is shared with every other endpoint that has no dedicated limit, so requests across those endpoints all draw from the same budget.

---

Retrieves all agent-portfolios belonging to the authenticated user.

## Headers

- `x-request-id` string, uuid, required
- `x-api-key` string, password, required
- `x-user-key` string, password, required

## Response `200`

Agent-portfolios retrieved successfully

- GetAgentPortfoliosResponse
  - `agentPortfolios` AgentPortfolioItem[] — The collection of agent-portfolios owned by the user.
    - `agentPortfolioId` string, uuid — The unique identifier of the agent-portfolio.
    - `agentPortfolioName` string — The display name of the agent-portfolio.
    - `agentPortfolioGcid` integer — The GCID associated with the agent-portfolio.
    - `agentPortfolioVirtualBalance` number — The fixed virtual balance (in USD) that the agent-portfolio was funded with. The investmentAmountInUsd used to copy is proportional to this balance.
    - `mirrorId` integer — The Trading API mirror ID for this agent-portfolio's copy trade.
    - `createdAt` string, date-time — When this agent-portfolio was created.
    - `userTokens` AgentPortfolioUserTokenItem[] — The user tokens associated with this agent-portfolio.
      - `userTokenId` string, uuid — The unique identifier of the user token.
      - `userTokenName` string — The user-defined name for the user token.
      - `clientId` string, uuid — The OAuth client identifier associated with the user token.
      - `externalApplicationName` string — The name of the external application registered for this token.
      - `ipsWhitelist` string[] — The set of whitelisted IP addresses authorized to use this token.
      - `expiresAt` string, date-time — The expiration date and time of the user token in UTC.
      - `scopeIds` integer[] — [DEPRECATED — use scopeNames instead] The set of permission scope identifiers granted to this token. Available scopes: 200 = etoro-public:real:read, 201 = etoro-public:demo:read, 202 = etoro-public:real:write, 203 = etoro-public:demo:write.
      - `scopeNames` string[] — The set of permission scope names (preferred; replaces the deprecated scopeIds). Provide either scopeNames or scopeIds. Available scopes: etoro-public:real:read, etoro-public:demo:read, etoro-public:real:write, etoro-public:demo:write.
      - `createdAt` string, date-time — When this user token was created.

## Other responses

- `401` — Unauthorized
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.net/etoro/apis/etoro-api.md) · [All operations](https://skmtc.net/etoro/apis/etoro-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/etoro/etoro-api/revisions/69c1fb266c35/schema)
