Files
jsmr/JSMR.Api/JSMR.Api.http

56 lines
1.0 KiB
HTTP

@host = http://localhost:5226
@contentType = application/json
### Search tags by name
POST {{host}}/api/tags/search
Content-Type: {{contentType}}
{
"options": {
"criteria": {
"name": "Heart"
},
"pageNumber": 1,
"pageSize": 10
}
}
###
### Search voice works with circle filter
POST {{host}}/api/voiceworks/search
Content-Type: {{contentType}}
{
"options": {
"criteria": {
"circleStatus": "Favorited",
"releaseDateStart": "2023-01-01",
"releaseDateEnd": "2024-12-31",
"locale": "English",
"supportedLanguages": ["English"]
},
"pageNumber": 1,
"pageSize": 20,
"sortOptions": [
{ "field": "Downloads", "direction": "Descending" }
]
}
}
### Search voice works with keywords
POST {{host}}/api/voiceworks/search
Content-Type: {{contentType}}
{
"options": {
"criteria": {
"keywords": "maid harem"
},
"pageNumber": 1,
"pageSize": 100,
"sortOptions": [
{ "field": "Downloads", "direction": "Descending" }
]
}
}