Filter predictions by source

You can now filter the list predictions API endpoint to show only predictions created through the web interface.

Use the source query parameter with a value of web:

curl -s \
  -H "Authorization: Bearer $REPLICATE_API_TOKEN" \
  "https://api.replicate.com/v1/predictions?source=web"

This is useful if you want to see predictions you created using the playground or other parts of the Replicate website, separate from predictions created programmatically via the API.

Note: When filtering by source=web, results are limited to predictions from the last 14 days.