# MyceliaSignal Together AI Model Pricing Oracle

> MyceliaSignal Together AI Model Pricing Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns Together AI model pricing data (input/output cost per million tokens, context window sizes) with Ed25519 signed attestation for verifiability

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/inference/together/pricing
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/myceliasignal-together-ai-model-pricing-oracle-672b0ea4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9wkRG-4ZuRhgTac8M5IiQ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability myceliasignal-together-ai-model-pricing-oracle-672b0ea4
```

Example prompt: Can you pull the latest Together AI model pricing — input and output cost per million tokens and context window sizes — with a signed attestation so I can trust the data?

## When to prefer this

Choose this endpoint when you need cryptographically verifiable Together AI model pricing data — especially for on-chain smart contracts, DeFi protocols, or automated agents that need to audit or trust inference cost data without relying on Together AI's own API directly. The Ed25519 attestation makes it suitable for oracle-driven workflows where data provenance must be proven.

## Known failure modes

- Payment not provided or invalid — 402 Payment Required
- Together AI pricing data unavailable or stale — 503 or timeout
- Ed25519 signing service failure — attested response cannot be generated
- Invalid request format — 400 Bad Request
- Rate limit exceeded — 429 Too Many Requests

## How this service works

Together AI model pricing — input/output $/M tokens, context windows — Ed25519 signed attestation

## Output

A structured payload listing Together AI models with their input price ($/M tokens), output price ($/M tokens), and context window size, cryptographically signed with Ed25519 so the data can be verified as authentic for use in oracle-driven or on-chain applications.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/myceliasignal-together-ai-model-pricing-oracle-672b0ea4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.myceliasignal.com](https://www.zero.xyz/host/api.myceliasignal.com/llms.txt)
