---
title: "List shares of a post"
method: GET
path: "/api/v1/posts/{postId}/shares"
tags: ["Social Feeds"]
---

# List shares of a post

`GET /api/v1/posts/{postId}/shares`

**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.

---

Returns a paginated list of shares of the specified post, including both plain reshares and quote shares. Authentication is optional.

## Path parameters

- `postId` string, uuid, required

## Query parameters

- `take` integer
- `offsetEntityId` string
- `order` 'Asc' | 'Desc'
- `client_request_id` string, uuid, required

## Headers

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

## Response `200`

Paginated list of shares

- SharesResponse — Paginated list of shares on a post
  - `paging` object — Pagination info
    - `totalCount` integer — Total number of shares
    - `offsetEntityId` string — Opaque cursor for next page
    - `next` string — URL to fetch the next page
  - `postShares` object[] — List of share entries
    - `shareReactionId` string — ID of the share reaction
    - `createdAt` string, date-time, nullable — When the share was created
    - `owner` User — eToro user profile (slim projection)
      - `id` string — User's GCID (string form)
      - `username` string — Unique username
      - `firstName` string — First name
      - `lastName` string — Last name
      - `avatar` object — Profile picture URLs
        - `small` string — 32 px avatar URL
        - `medium` string — 64 px avatar URL
        - `large` string — 128 px avatar URL
        - `svg` object, nullable — SVG avatar with brand colours (null when not available)
          - `url` string — SVG URL
          - `backgroundColor` string — Background colour hex
          - `textColor` string — Text colour hex
      - `roles` string[] — User roles
      - `isBlocked` boolean — Owner has blocked the requester
      - `isPrivate` boolean — User's profile is private
      - `countryCode` integer — ISO numeric country code
      - `piLevel` integer — Popular Investor level (0 = not PI)

## Other responses

- `404` — Post not found
- `429` — Too Many Requests — the shared rate limit (60 requests / 60s) was exceeded.

---

[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)
