Base URLs

All Locktera CORE API requests are made to the following base URL:

https://share.locktera.com/api/v1

All Locktera CORE API endpoints are accessed using this base URL.

When using the Locktera documentation, examples may show relative endpoint paths such as:

GET /containers/{container_id}

The base URL is automatically applied.

Example Request URL

API endpoints are constructed by appending the endpoint path to the base URL.

Example endpoint:

GET /me

Full request URL:

https://share.locktera.com/api/v1/me

Example request using curl:

curl -X GET https://share.locktera.com/api/v1/me \
  -H "Authorization: Bearer YOUR_API_KEY"

HTTPS Requirement

All API requests must use HTTPS.

Requests made over HTTP are not supported.

HTTPS ensures:

• Encryption of all data in transit
• Protection of API keys and sensitive data
• Secure communication with the Locktera API

Request Format

All requests must include:

• The base URL
• A valid endpoint path
• A valid API key in the Authorization header

Example:

curl -X GET $BASE_URL/me \
  -H "Authorization: Bearer YOUR_API_KEY"

Requests without valid HTTPS or authentication are rejected before any container or policy evaluation occurs.

Versioning

The Locktera API uses versioned endpoints.

The current version is:

v1

Version is specified in the base URL:

https://share.locktera.com/api/v1

Future versions will use a different base URL, such as:

https://api.locktera.com/api/v2

or

https://api.locktera.com/api/2026-01-01

Summary

The Locktera CORE API base URL is:

https://share.locktera.com/api/v1

All API requests must:

• Use HTTPS
• Include the correct endpoint path
• Include a valid API key

All Locktera CORE API operations use this base URL.