Skip to content

List all pending suggestions for org

GET
/api/v1/suggestions
curl --request GET \
--url https://dashboard.justcrawl.io/api/v1/suggestions \
--header 'Authorization: Bearer <token>'

Org-wide pending-suggestion inbox — every workflow’s pending suggestions in one list. Powers the dashboard’s home-page nudge “N optimizations available.” Already-applied or dismissed rows are filtered out at the SQL level; use the per-workflow listing endpoint to see history.

All pending suggestions across the org’s smart workflows.

Media type application/json
Array<object>
object
id
string format: uuid
status
string
Allowed values: pending applied dismissed
currentProviderOrder
Array<string>
suggestedProviderOrder
Array<string>
reason
string
improvementPct
number
nullable
improvementMetric
string
estimatedCostBefore
number
nullable
estimatedCostAfter
number
nullable
createdAt
string format: date-time
resolvedAt
string format: date-time
nullable
expiresAt
string format: date-time
Example
[
{
"status": "pending"
}
]

Missing or invalid authentication token

Media type application/json
object
error
string
Example
{
"error": "Missing or invalid authentication token"
}

Insufficient permissions for this operation

Media type application/json
object
error
string
Example
{
"error": "No organization. Complete onboarding first."
}

Unexpected server error. Logs and PostHog $exception capture

Media type application/json
object
error
string
Example
{
"error": "Something went wrong"
}