New search API, now in beta

We’ve added a new search API that makes it easier to find models, collections, and docs.

curl -s \
  -H "Authorization: Bearer $REPLICATE_API_TOKEN" \
  "https://api.replicate.com/v1/search?query=lip+sync"

SDK support

The search API is available in our SDKs:

  • TypeScript: npm install replicate@alpha and use replicate.search()
  • Python: pip install --pre replicate and use replicate.search()
  • MCP: Available in both our remote and local MCP servers

Backwards compatibility

The existing QUERY /v1/models endpoint still works, but we recommend migrating to the new search endpoint for improved results.

Read our announcement blog post for more details and example code.