/
/Replicate HTTP API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 2h ago · Updated 10mo ago
  • getGet the authenticated account
  • getList collections of models
  • getGet a collection of models
  • getList deployments
  • postCreate a deployment
  • getGet a deployment
  • deleteDelete a deployment
  • patchUpdate a deployment
  • postCreate a prediction using a deployment
  • getList files
  • postCreate a file
  • getGet a file
  • deleteDelete a file
  • getDownload a file
  • getList available hardware for models
  • getList public models
  • postCreate a model
  • getGet a model
  • deleteDelete a model
  • patchUpdate metadata for a model
  • getList examples for a model
  • postCreate a prediction using an official model
  • getGet a model's README
  • getList model versions
  • getGet a model version
  • deleteDelete a model version
  • postCreate a training
  • getList predictions
  • postCreate a prediction
  • getGet a prediction
  • postCancel a prediction
  • getSearch models, collections, and docs (beta)
  • getList trainings
  • getGet a training
  • postCancel a training
  • getGet the signing secret for the default webhook

Get a model's README

Get the README content for a model.

Example cURL request:

curl -s \
  -H "Authorization: Bearer $REPLICATE_API_TOKEN" \
  https://api.replicate.com/v1/models/replicate/hello-world/readme

The response will be the README content as plain text in Markdown format:

# Hello World Model

This is an example model that...
get/models/{model_owner}/{model_name}/readme

Path parameters

model_ownerstring required

The name of the user or organization that owns the model.

model_namestring required

The name of the model.

Response

Success

Changes