Skip to content

Root & Key Verification

GET /api/

Returns the Solder version and stream. Use this endpoint to verify that your Solder installation is reachable and responding.

Example Request

curl https://solder.yourdomain.com/api/

Response (200)

{
  "api": "TechnicSolder",
  "version": "1.0.1",
  "stream": "rolling"
}

GET /api/verify/{key}

Validate an API key. The Technic Platform calls this endpoint when you link a Solder instance to verify the connection. This endpoint is rate-limited.

Path Parameters

Parameter Type Description
key string The API key to validate.

Example Request

curl https://solder.yourdomain.com/api/verify/YOUR_API_KEY

Response (200)

{
  "valid": "Key validated.",
  "name": "My Key Name"
}

Error Response (403)

{
  "error": "Invalid key provided."
}