List all analyses in a channel with pagination and filtering.Query Parameters#
limit: Number of results per page (default: 10, max: 100)
offset: Number of results to skip (default: 0)
status: Filter by analysis status (Pending, Active, Expired, etc.)
timeframe: Filter by trading timeframe (e.g., H1)
direction: Filter by direction (bullish, bearish)
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET 'https://integration.returning.ai/apis/v1/analysis/communities/6502c9e514a3e564c5c09c0a/channels/656966caae59563fb291b324?limit=20&page=1&status=Pending&timeframe=H1&direction=BULLISH' \
--header 'Authorization: Bearer <token>'
Responses
application/json
Analyses retrieved successfully
{
"status": "success",
"message": "Analyses retrieved successfully",
"data": {
"analyses": [
{
"analysisId": "507f1f77bcf86cd799439022",
"title": "EURUSD Bullish Bounce",
"symbol": "EURUSD",
"direction": "BULLISH",
"status": "Pending",
"createdAt": "2025-01-09T12:00:00Z",
"updatedAt": "2025-01-09T12:00:00Z"
}
],
"pagination": {
"total": 45,
"limit": 10,
"offset": 0,
"hasMore": true
}
}
}
Modified at 2026-01-09 13:55:12