---
title: "Get a model's README"
method: GET
path: "/models/{model_owner}/{model_name}/readme"
---

# Get a model's README

`GET /models/{model_owner}/{model_name}/readme`

Get the README content for a model.

Example cURL request:

```console
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...
```

## Path parameters

- `model_owner` string, required
- `model_name` string, required

## Response `200`

Success

## Other responses

- `404` — README not found

---

[API](https://skmtc.net/replicate/apis/replicate-http-api.md) · [All operations](https://skmtc.net/replicate/apis/replicate-http-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/replicate/replicate-http-api/versions/7a537f433b0b/schema)
