Skip to main content
POST
/
api
/
replicate
/
models
/replicate/models
curl --request POST \
  --url https://api.anysite.io/api/replicate/models \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "model": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "owner": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "ReplicateModel",
    "description": "<string>",
    "run_count": 123,
    "image": "<string>",
    "owner_avatar": "<string>",
    "is_official": false,
    "is_pipeline": false,
    "is_commercial": false,
    "visibility": "<string>",
    "user_type": "<string>",
    "hardware": "<string>",
    "run_state": "<string>",
    "pricing": "<string>",
    "price_p50": "<string>",
    "price_tiers": [],
    "github_url": "<string>",
    "paper_url": "<string>",
    "weights_url": "<string>",
    "license_url": "<string>",
    "latest_version_id": "<string>",
    "latest_version_created_at": 123,
    "input_schema": [],
    "output_schema": {},
    "default_example": {
      "id": "<string>",
      "@type": "ReplicateExample",
      "status": "<string>",
      "input": {},
      "output": "<unknown>",
      "error": "<string>",
      "created_at": 123,
      "completed_at": 123,
      "predict_time": 123,
      "created_by": "<string>",
      "version_id": "<string>"
    },
    "readme": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
model
string
required

Model identifier ('owner/name') or full model URL

Minimum string length: 1
Examples:

"black-forest-labs/flux-schnell"

"https://replicate.com/lucataco/sdxl"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
owner
string
required
name
string
required
url
string
required
@type
string
default:ReplicateModel
description
string | null
run_count
integer | null
image
string | null
owner_avatar
string | null
is_official
boolean
default:false
is_pipeline
boolean
default:false
is_commercial
boolean
default:false
visibility
string | null
user_type
string | null
hardware
string | null
run_state
string | null
pricing
string | null
price_p50
string | null
price_tiers
object[]
github_url
string | null
paper_url
string | null
weights_url
string | null
license_url
string | null
latest_version_id
string | null
latest_version_created_at
integer | null
input_schema
object[]
output_schema
object | null
default_example
object | null
readme
string | null