ToolAssay

Divides each available substrate mass by its required mass per product mass, sel

Divides each available substrate mass by its required mass per product mass, selects the limiting substrate, and applies a caller-supplied process efficiency. It does not model yeast metabolism, kinetics, oxygen transfer, toxicity, regulation or actual fermentation performance.

Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.003listed price per call
n/aprice it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://bio.halowerk.com/v1/syn-yeast-yield

CategoryCommerce and shopping
Provider hostbio.halowerk.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days2 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

We never call tools that send, buy, move money or file anything, not even without paying.

Example input (from the provider)

{
  "body": {
    "process_efficiency": 0.78,
    "substrates": [
      {
        "available_g": 1200,
        "name": "glucose",
        "required_g_per_g_product": 2.4
      },
      {
        "available_g": 80,
        "name": "nitrogen-source",
        "required_g_per_g_product": 0.2
      }
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "properties": {
            "process_efficiency": {
              "maximum": 1,
              "minimum": 0,
              "type": "number"
            },
            "substrates": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "available_g": {
                    "maximum": 1000000000000,
                    "minimum": 0,
                    "type": "number"
                  },
                  "name": {
                    "maxLength": 128,
                    "minLength": 1,
                    "type": "string"
                  },
                  "required_g_per_g_product": {
                    "maximum": 1000000000000,
                    "minimum": 1e-12,
                    "type": "number"
                  }
                },
                "required": [
                  "name",
                  "available_g",
                  "required_g_per_g_product"
                ],
                "type": "object"
              },
              "maxItems": 100,
              "minItems": 1,
              "type": "array"
            }
          },
          "required": [
            "substrates",
            "process_efficiency"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON