vrchat_search_avatars
Search and filter your own or featured avatars in VRChat, sorting by criteria like popularity, release status, or tags, using a structured query interface for precise results.
Instructions
Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other people's avatars.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featured | No | ||
maxUnityVersion | No | ||
minUnityVersion | No | ||
n | No | ||
notag | No | ||
offset | No | ||
order | No | ||
platform | No | ||
releaseStatus | No | ||
sort | No | ||
tag | No | ||
user | No | ||
userId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"featured": {
"type": "boolean"
},
"maxUnityVersion": {
"type": "string"
},
"minUnityVersion": {
"type": "string"
},
"n": {
"maximum": 100,
"minimum": 1,
"type": "number"
},
"notag": {
"type": "string"
},
"offset": {
"minimum": 0,
"type": "number"
},
"order": {
"enum": [
"ascending",
"descending"
],
"type": "string"
},
"platform": {
"type": "string"
},
"releaseStatus": {
"enum": [
"public",
"private",
"hidden",
"all"
],
"type": "string"
},
"sort": {
"enum": [
"popularity",
"heat",
"trust",
"shuffle",
"random",
"favorites",
"reportScore",
"reportCount",
"publicationDate",
"labsPublicationDate",
"created",
"_created_at",
"updated",
"_updated_at",
"order",
"relevance",
"magic",
"name"
],
"type": "string"
},
"tag": {
"type": "string"
},
"user": {
"enum": [
"me"
],
"type": "string"
},
"userId": {
"type": "string"
}
},
"type": "object"
}