v22

latestOpenAPI 3.1.0raw.githubusercontent.com2025-10-15361989.5 KB

List collections of models

Example cURL request:

curl -s \
  -H "Authorization: Bearer $REPLICATE_API_TOKEN" \
  https://api.replicate.com/v1/collections

The response will be a paginated JSON list of collection objects:

{
  "next": "null",
  "previous": null,
  "results": [
    {
      "name": "Super resolution",
      "slug": "super-resolution",
      "description": "Upscaling models that create high-quality images from low-quality images."
    }
  ]
}
get/collections

Response

Success

nextstring nullable

A URL pointing to the next page of collection objects, if any

previousstring nullable

A URL pointing to the previous page of collection objects, if any