Skip to main content
POST
/
api
/
replicate
/
models
/
search
/replicate/models/search
curl --request POST \
  --url https://api.anysite.io/api/replicate/models/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "owner": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "ReplicateSearchModel",
    "description": "<string>",
    "generated_description": "<string>",
    "run_count": 123,
    "image": "<string>",
    "owner_avatar": "<string>",
    "github_url": "<string>",
    "paper_url": "<string>",
    "license_url": "<string>",
    "tags": [],
    "is_official": false,
    "user_type": "<string>",
    "aa_rank": 123,
    "aa_category": "<string>",
    "score": 123,
    "updated_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query

Minimum string length: 1
Examples:

"flux"

"image upscale"

count
integer
required

Max number of results

Required range: x >= 1
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:ReplicateSearchModel
description
string | null
generated_description
string | null
run_count
integer | null
image
string | null
owner_avatar
string | null
github_url
string | null
paper_url
string | null
license_url
string | null
tags
string[]
is_official
boolean
default:false
user_type
string | null
aa_rank
integer | null
aa_category
string | null
score
number | null
updated_at
integer | null