Spaces:
Running
Running
File size: 14,795 Bytes
6aed9f0 66ca64a 6aed9f0 66ca64a 6aed9f0 66ca64a 6aed9f0 66ca64a f0b744f 6aed9f0 f0b744f 6aed9f0 f0b744f 6aed9f0 09f5da5 6aed9f0 09f5da5 6aed9f0 f0b744f 6aed9f0 09f5da5 6aed9f0 ec78582 6aed9f0 f0b744f 6aed9f0 66ca64a 6aed9f0 f0b744f 6aed9f0 f0b744f 6aed9f0 f0b744f 6aed9f0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 |
---
openapi: 3.0.0
info:
title: imperialwool's FunAPI
description: Big API for bots, developers or just fun by @podvaljoey (telegram).
version: $VERSION_VARIABLE$
servers:
- url: https://imperialwool-funapi.hf.space/
description: You are here! ^o^
paths:
/analyzeText/api/v1/toxicity:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/PredictedToxicityObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- Analyze text API
parameters:
- name: text
description: Text to analyze
in: lang
schema:
type: string
example: ru
summary: Classifying a text as toxic or not toxic
responses: null
/analyzeText/api/v1/sentiment:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/PredictedSentimentObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- Analyze text API
parameters:
- name: text
description: Text to analyze
in: lang
schema:
type: string
example: ru
summary: Classifying a text as negative, positive or neutral
responses: null
/jokes/api/v1/get:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/JokeObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- Jokes API
parameters:
- name: lang
description: Language in which to look for a joke. (Now supported only ru, sorry.)
in: lang
schema:
type: string
example: ru
- name: source
description: You can get sources and use one of them, if you like.
in: source
schema:
type: string
example: chucknorris
summary: Finding joke by language
responses: null
/jokes/api/v1/sources:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/JokeSourceObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- Jokes API
summary: Showing all possible jokes sources
responses: null
/osu/api/v1/find-song:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/FindBeatmapsObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- osu! API
parameters:
- name: query
description: Query to find beatmap.
in: query
schema:
type: string
example: rickroll
summary: Finding beatmap by query
responses: null
/osu/api/v1/get-full:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/SongFullObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- osu! API
parameters:
- name: query
description: Query to find beatmap and download full song.
in: query
schema:
type: string
example: rickroll
- name: beatmapId
description: Beatset id. Not map, set.
in: query
schema:
type: integer
example: 1
summary: Get beatmap's full song
responses: null
/osu/api/v1/get-preview:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/SongPreviewObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- osu! API
parameters:
- name: query
description: Query to find beatmap and download full song.
in: query
schema:
type: string
example: rickroll
- name: beatmapId
description: Beatset id. Not map, set.
in: query
schema:
type: integer
example: 1
summary: Get beatmap's song preview
responses: null
/system/api/v1/info:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/SysinfoObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- System information
summary: Information about server
responses: null
/yt/api/v1/search:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/YTSearchObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- "Youtube: Becoming Music Platform"
parameters:
- name: query
description: Query for YouTube to find videos.
in: query
schema:
type: string
example: never gonna give you up
summary: This method can help with searching videos on YouTube
responses: null
/yt/api/v1/get-full:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/YTFullObject"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- "Youtube: Becoming Music Platform"
parameters:
- name: url
description: Url to video from YouTube. (TikTok also works sometimes.)
in: query
schema:
type: string
- name: bitrate
description: Bitrate of final audio.
in: query
schema:
type: string
example: 64k
- name: quality
description: Quality of final audio. Only 'worst' or 'best'.
in: query
schema:
type: string
example: worst
summary: Download video as audio and providing link for you
responses: null
/yt/api/v1/get-preview:
post:
"200":
description: OK
content: null
application/json:
schema: null
$ref: "#/components/schemas/YTPreviewResult"
"400":
description: Bad Request
content: null
application/json:
schema: null
$ref: "#/components/schemas/ErrorObject"
tags:
- "Youtube: Becoming Music Platform"
parameters:
- name: url
description: Url to video from YouTube. (TikTok also works sometimes.)
in: query
schema:
type: string
- name: bitrate
description: Bitrate of final audio.
in: query
schema:
type: string
example: 64k
- name: quality
description: Quality of final audio. Only 'worst' or 'best'.
in: query
schema:
type: string
example: worst
- name: duration
description: Duration of preview. Maximum 60 seconds.
in: query
schema:
type: integer
example: 45
summary: Download video as cutted audio and providing link for you
responses: null
components:
schemas:
SongFullObject:
type: object
properties:
status:
type: string
example: pass
details:
type: object
properties:
code:
type: integer
example: 200
name:
type: string
example: 1592415.ogg
result:
type: string
example: https://imperialwool-funapi.hf.space/static/full/1592415.ogg
SongPreviewObject:
type: object
properties:
status:
type: string
example: pass
details:
type: object
properties:
code:
type: integer
example: 200
name:
type: string
example: 1244874.mp3
result:
type: string
example: https://b.ppy.sh/preview/1244874.mp3
BeatmapObject:
type: object
properties:
artist:
type: string
example: never gonna give you up remix
beatmapId:
type: integer
example: 1542795
creator:
type: string
example: CrisFloppa
source:
type: string
example: ""
tags:
type: string
example: never gonna gie you up rick roll
title:
type: string
example: rick astley
PredictedSentimentObject:
type: object
properties:
status:
type: string
example: pass
predicted_sentiment:
type: string
example: Positive
PredictedToxicityObject:
type: object
properties:
status:
type: string
example: pass
toxicity:
type: bool
example: false
FindBeatmapsObject:
type: object
properties:
status:
type: string
example: pass
details:
type: object
properties:
code:
type: integer
example: 200
result:
type: array
items:
$ref: "#/components/schemas/BeatmapObject"
JokeObject:
type: object
properties:
status:
type: string
example: pass
details:
type: object
properties:
code:
type: integer
example: 200
result:
type: string
example: |-
.NET developers are picky when it comes to food.
They only like chicken NuGet
JokeSourceObject:
type: object
properties:
lang1:
type: array
items:
- source 1
- source 2
- source 3
- source 4
- source 5
lang2:
type: array
items:
- source 1
- source 2
- source 3
- source 4
- source 5
SysinfoObject:
type: object
properties:
API_VERSION:
type: string
example: $VERSION_VARIABLE$
CPU_INFO:
type: object
properties:
cpu_brand:
type: string
example: AMD EPYC 7R13 Processor
cpu_count:
type: object
properties:
all:
type: integer
example: 16
exclude_virtual:
type: integer
example: 8
cpu_freq:
type: object
properties:
current:
type: number
format: float
example: 3522.9323125
min:
type: number
format: float
example: 0
max:
type: number
format: float
example: 3600
cpu_load:
type: number
format: float
example: 16.2
MEM_INFO:
type: object
properties:
mem_total:
type: integer
example: 126125
mem_used:
type: integer
example: 87497
ErrorObject:
type: object
properties:
status:
type: string
example: error
details:
type: object
properties:
error_code:
type: integer
example: 1337
error_details:
type: string
example: Some error
YTSearchObject:
type: object
properties:
status:
type: string
example: ok
query:
type: string
example: never gonna give you up
videoIds:
type: object
properties:
"0":
type: string
example: dQw4w9WgXcQ
"1":
type: string
example: GtL1huin9EE
"2":
type: string
example: uXV-IaR_vNE
YTFullObject:
type: object
properties:
status:
type: string
example: pass
details:
type: object
properties:
code:
type: integer
example: 0
name:
type: string
example: R8YprjS6ztg.ogg
result:
type: string
example: https://imperialwool-funapi.hf.space/static/full/R8YprjS6ztg.ogg
YTPreviewResult:
type: object
properties:
status:
type: string
example: pass
details:
type: object
properties:
code:
type: integer
example: 0
name:
type: string
example: R8YprjS6ztg.ogg
result:
type: string
example: https://imperialwool-funapi.hf.space/static/previews/R8YprjS6ztg.ogg
|