Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.darkbloom.dev/llms.txt

Use this file to discover all available pages before exploring further.

The models endpoint returns the set of models currently available across the Darkbloom provider network. The response extends the OpenAI model list format with Darkbloom-specific metadata: how many providers are serving each model, whether any of those providers are attested, and their aggregate trust level. Use this endpoint to discover which model IDs are valid for inference requests and to check real-time network availability before sending a request.

Authentication

This endpoint requires a Bearer token:
Authorization: Bearer eigeninference-...

Response

object
string
Always "list".
data
object[]
Array of model objects.

Available models

Model IDDisplay nameArchitecture
qwen3.5-27b-claude-opus-8bitQwen3.5 27B Claude Opus 8-bit27B dense, Claude Opus distilled
mlx-community/gemma-4-26b-a4b-it-8bitGemma 4 26B 8-bit26B MoE, 4B active
mlx-community/Trinity-Mini-8bitTrinity Mini 8-bit27B Adaptive MoE
mlx-community/Qwen3.5-122B-A10B-8bitQwen3.5 122B MoE 8-bit122B MoE, 10B active
mlx-community/MiniMax-M2.5-8bitMiniMax M2.5 8-bit239B MoE, 11B active

Example

cURL
curl https://api.darkbloom.dev/v1/models \
  -H "Authorization: Bearer eigeninference-..."

Example response

{
  "object": "list",
  "data": [
    {
      "id": "qwen3.5-27b-claude-opus-8bit",
      "object": "model",
      "created": 0,
      "owned_by": "eigeninference",
      "metadata": {
        "model_type": "text",
        "quantization": "8bit",
        "provider_count": 3,
        "attested_providers": 2,
        "trust_level": "hardware",
        "display_name": "Qwen3.5 27B Claude Opus 8-bit"
      }
    },
    {
      "id": "mlx-community/gemma-4-26b-a4b-it-8bit",
      "object": "model",
      "created": 0,
      "owned_by": "eigeninference",
      "metadata": {
        "model_type": "text",
        "quantization": "8bit",
        "provider_count": 5,
        "attested_providers": 5,
        "trust_level": "hardware",
        "display_name": "Gemma 4 26B 8-bit"
      }
    },
    {
      "id": "mlx-community/Qwen3.5-122B-A10B-8bit",
      "object": "model",
      "created": 0,
      "owned_by": "eigeninference",
      "metadata": {
        "model_type": "text",
        "quantization": "8bit",
        "provider_count": 1,
        "attested_providers": 1,
        "trust_level": "hardware",
        "display_name": "Qwen3.5 122B MoE 8-bit"
      }
    }
  ]
}