Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

REST API reference

Nikita Mironov edited this page Jun 2, 2020 · 2 revisions

Antarctica designed as a server-client application, so it has an API server, which serves clients. For security reasons our API server isn't open-source, but our API is accessible for everyone, so you can just build your own client for your specific needs or help our community to build an official one. But also we have a plan to build an embeddable version which can be deployed on your local server.

Our API consists of 4 "sections":

  1. User operations (registration, authorization)
  2. Files operations (synchronization, reading, uploading, updating, removing)
  3. Packages operations (synchronization, reading, uploading, updating, removing)
  4. Package sources (repositories) operations (synchronization, reading, uploading, updating, removing)

An nerdy example HTTP request:

GET /files/11/cbabcaacbabc HTTP/1.1
HOST api.antarctica-server.tk

or just type this in your browser: https://api.antarctica-server.tk/files/11/cbabcaacbabc

Clone this wiki locally