diff options
author | metamuffin <metamuffin@disroot.org> | 2023-02-19 16:17:17 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-02-19 16:17:17 +0100 |
commit | 8d2a2fd918e52018b5ff5bc66bc3f67bb7c58d8d (patch) | |
tree | 6d165d79b42f69b60983d1b1914283b2b4dec7ad /api.md | |
parent | 3edddb0aea423a6f41da7597aec1836b015bc6bb (diff) | |
download | jellything-8d2a2fd918e52018b5ff5bc66bc3f67bb7c58d8d.tar jellything-8d2a2fd918e52018b5ff5bc66bc3f67bb7c58d8d.tar.bz2 jellything-8d2a2fd918e52018b5ff5bc66bc3f67bb7c58d8d.tar.zst |
api doc
Diffstat (limited to 'api.md')
-rw-r--r-- | api.md | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,26 @@ +# Jellything API + +Routes marked with `*` require authentification. Any endpoint returning JSON, +will report errors with an object containing error string in the `error` key. + +The `jellycommon` crate provides useful structs for deserializing data. + +```toml +# Cargo.toml +[depedencies] +jellycommon = { git = "https://codeberg.org/metamuffin/jellything.git" } +``` + +## GET `/api/version` + +Returns API version number. + +## POST `/api/account/login` + +Request body contains JSON with keys `username` and `password`. The Response +contains the session cookie. + +## GET* `/api/library/<path...>` + +Request a library node (either a directory or item). See +[`common/src/api.rs`](./common/src/api.rs) |