List shares of a post
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
ID of the post to list shares of (UUID)
Query parameters
Number of items to return (1–100, default 20)
Opaque cursor from a previous response for stable paging
Sort order
Client-generated correlation ID (UUID). Required for request tracing and idempotency.
Headers
A unique request identifier.
API key for authentication.
User-specific authentication key.
Response
Paginated list of shares
Example response
{
"paging": {
"totalCount": 17,
"offsetEntityId": "c3d4e5f6-a7b8-4901-cdef-345678901234",
"next": "/api/v1/feeds/post/d9020c00-c364-11ee-8080-80005148990b/shares?take=20&offsetEntityId=c3d4e5f6-a7b8-4901-cdef-345678901234"
},
"postShares": [
{
"shareReactionId": "e5f6a7b8-c9d0-4123-efab-567890123456",
"createdAt": "2025-01-15T10:30:00Z",
"owner": {
"id": "7890",
"username": "johndoe",
"firstName": "John",
"lastName": "Doe",
"avatar": {
"small": "https://etoro-cdn.etorostatic.com/avatars/150X150/johndoe.jpg",
"medium": "https://etoro-cdn.etorostatic.com/avatars/200X200/johndoe.jpg",
"large": "https://etoro-cdn.etorostatic.com/avatars/300X300/johndoe.jpg",
"svg": {
"url": "https://etoro-cdn.etorostatic.com/avatars/svg/johndoe.svg",
"backgroundColor": "#2196F3",
"textColor": "#FFFFFF"
}
},
"roles": [
"Regular"
],
"countryCode": 840
}
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.