Hosting API

REST API

The 4EVERLAND API offers easy access to the platform's fully-featured, stable performance, and flexible service. With the API, you can deploy your custom projects by integrating them with your existing projects, making it easy to build and manage your applications and websites.

The API documentation provides detailed information on how to use the API, including how to authenticate and authorize requests, how to create and manage projects, and how to deploy and update your projects. This makes it easy to integrate your custom projects with the 4EVERLAND platform, enabling you to take advantage of its powerful features and capabilities.

API Basics

Our API is exposed as an HTTP/1 and HTTP/2 service over SSL. All endpoints live under the URL'https://cli-api.4everland.org/' and then generally follow the REST architecture.

Auth

cli-user-login

Endpoint

POST /login

Request Headers

NameValueRequired

Content-Type

application/x-www-form-urlencoded

true

Accept-Version

1.0

true

token

true

curl

curl -L -X POST 'https://cli.4everland.org/login' \
-H 'Accept-Version: 1.0' \
-H 'token:eyJ0eXAiOiJKV1QiLCJhbG***60gDRzH37majqSgZ2dg'

response

{
    "code": 200,
    "message": "",
    "bcode": 10,
    "content": {
        "token": "callback-token"
    }
}

If you have any questions, please join our Discord server, or send us an email at contact@4everland.org.

Last updated