Skip to main content
POST
/
api
/
modelscope
/
studios
/
search
/modelscope/studios/search
curl --request POST \
  --url https://api.anysite.io/api/modelscope/studios/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "qwen",
  "create_type": [],
  "sort": "trending"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "ModelScopeStudio",
    "name": "<string>",
    "owner": "<string>",
    "chinese_name": "<string>",
    "description": "<string>",
    "like_count": 123,
    "download_count": 123,
    "predict_count": 123,
    "visit_count": 123,
    "unique_visitor_count": 123,
    "tags": [],
    "domain": [],
    "license": "<string>",
    "studio_type": "<string>",
    "status": "<string>",
    "sdk_type": "<string>",
    "sdk_version": "<string>",
    "app_url": "<string>",
    "is_published": false,
    "is_mcp_server": false,
    "is_login_required": false,
    "visibility": 123,
    "revision": "<string>",
    "created_by": "<string>",
    "created_at": 123,
    "updated_at": 123,
    "deployed_at": 123,
    "image": "<string>",
    "cover": "<string>",
    "related_paper_ids": [],
    "organization": {
      "@type": "ModelScopeOrganization",
      "id": 123,
      "name": "<string>",
      "full_name": "<string>",
      "image": "<string>",
      "github_url": "<string>",
      "created_at": 123,
      "updated_at": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max result count

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string | null

Free-text search keyword

Example:

"qwen"

create_type
enum<string>[] | null

Filter by how the studio was created (interactive builder or programmatic upload)

Available options:
interactive,
programmatic
sort
enum<string>
default:trending

Sort order

Available options:
trending,
downloads,
likes

Response

Successful Response

id
string
required
url
string
required
@type
string
default:ModelScopeStudio
name
string | null
owner
string | null
chinese_name
string | null
description
string | null
like_count
integer | null
download_count
integer | null
predict_count
integer | null
visit_count
integer | null
unique_visitor_count
integer | null
tags
string[]
domain
string[]
license
string | null
studio_type
string | null
status
string | null
sdk_type
string | null
sdk_version
string | null
app_url
string | null
is_published
boolean
default:false
is_mcp_server
boolean
default:false
is_login_required
boolean
default:false
visibility
integer | null
revision
string | null
created_by
string | null
created_at
integer | null
updated_at
integer | null
deployed_at
integer | null
image
string | null
cover
string | null
organization
object | null