LANraragi
GithubDemoDocker HubDiscord Server
Current Release
Current Release
  • LANraragi Documentation
  • Installing LANraragi
    • โ“Which installation method is best for me?
    • ๐ŸชŸLRR for Windows (Win10)
    • ๐ŸŽHomebrew (macOS)
    • ๐ŸณDocker (All platforms)
    • ๐Ÿ› ๏ธSource Code (Linux/macOS)
    • ๐ŸงCommunity (Linux)
    • ๐Ÿ‘ฟJail (FreeBSD)
  • Basic Operations
    • ๐Ÿš€Getting Started
    • ๐Ÿ“šReading Archives
    • โœ’๏ธAdding Metadata
    • ๐Ÿ”ŽSearching the Archive Index
    • ๐Ÿ“ˆStatistics and Logs
    • ๐Ÿ–Œ๏ธThemes
  • Advanced Usage
    • ๐Ÿฆ‡Batch Operations
    • ๐Ÿ“‚Categories
    • โฌ‡๏ธDownloading Archives
    • ๐Ÿ’พBackup and Restore
    • ๐Ÿ“ฑUsing External Readers
    • ๐ŸŒNetwork Interface Setup
    • ๐Ÿ•ต๏ธProxy Setup
    • ๐Ÿ“Tag Rules
  • Developer Guide
    • ๐Ÿ—๏ธSetup a Development Environment
    • ๐Ÿ›๏ธArchitecture & Style
    • ๐ŸˆTranslating LANraragi to other languages
  • API Documentation
    • ๐Ÿ”‘Getting started
    • Search API
    • Archive API
    • Database API
    • Category API
    • Tankoubon API
    • Shinobu API
    • Minion API
    • Miscellaneous other API
  • Writing Plugins
    • ๐ŸงฉGetting started
    • Login Plugins
    • Metadata Plugins
    • Downloader Plugins
    • Generic Plugins ("Scripts")
    • Code Examples
Powered by GitBook
On this page
  • ๐Ÿ”‘Get Shinobu Status
  • ๐Ÿ”‘Stop Shinobu
  • ๐Ÿ”‘Restart Shinobu

Was this helpful?

  1. API Documentation

Shinobu API

Control the built-in Background Worker.

๐Ÿ”‘Get Shinobu Status

GET http://lrr.tvc-16.science/api/shinobu

Get the current status of the Worker.

{
  "success": 1,
  "is_alive": 1,
  "operation": "shinobu_status",
  "pid": 1608
}

๐Ÿ”‘Stop Shinobu

POST http://lrr.tvc-16.science/api/shinobu/stop

Stop the Worker.

{
  "operation": "shinobu_stop",
  "success": 1
}

๐Ÿ”‘Restart Shinobu

POST http://lrr.tvc-16.science/api/shinobu/restart

(Re)-start the Worker.

{
  "new_pid": 1727,
  "operation": "shinobu_restart",
  "success": 1
}
PreviousTankoubon APINextMinion API

Last updated 3 years ago

Was this helpful?