# PreStocks Private Company Valuation by Symbol

> PreStocks Private Company Valuation by Symbol is a paid API for AI agents from agents.x402stock.xyz, paid per call via MPP, $0.01/call, status unknown (last checked 2026-09-14).

Returns the current SPV mark price, on-chain token price, implied valuation, premium/discount, and token metadata for a single private pre-IPO company identified by its PreStocks symbol.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/private-stocks/{symbol}
- Price: $0.01/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-prestocks-private-company-valuation-by-symbol-59c38c70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2-sz93hLX5IrvrgijgebT

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 agents-x402stock-xyz-prestocks-private-company-valuation-by-symbol-59c38c70
```

Example prompt: What's the current valuation and PreStocks token price for OPENAI right now — is the token trading at a premium or discount to the SPV mark?

## When to prefer this

Choose this endpoint when you need real-time or near-real-time pricing and valuation data for a specific private, pre-IPO company that is tokenized on Solana via PreStocks SPVs. Ideal when you need both the SPV-backed fundamental mark and the secondary market on-chain price in a single call, including the premium/discount spread. Use the /api/v1/private-stocks listing endpoint first if you need to discover available symbols.

## Known failure modes

- Unknown or unsupported symbol returns a 404 or error response
- Mark price may be stale if the SPV has not been recently updated by the fund administrator
- On-chain token price may be null if there is no recent trade liquidity
- Token supply may be null for newly issued tokens
- Payment failure (402) if USDC balance is insufficient for the $0.01 per-call fee

## How this service works

The current valuation of one private, pre-IPO company by symbol — e.g. ANTHROPIC, OPENAI, SPACEX, ANDURIL, NEURALINK, KALSHI, POLYMARKET — via its PreStocks Solana token, backed 1:1 by SPV exposure. Returns the SPV mark price and valuation, the on-chain token price and implied valuation, the token's premium/discount, supply, and contract. List them all at /api/v1/private-stocks. From x402stock

## Output

A JSON object containing the company symbol, full name, plain-language description, SPV mark price per token in USD, total company valuation based on the SPV mark, current on-chain trading price, implied valuation from the on-chain price, premium or discount percentage between on-chain price and mark, circulating token supply, Solana mint contract address, logo URL, and a link to the PreStocks company page. Also includes source metadata, timestamp, and attribution.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "PreStocks private/pre-IPO company symbol, e.g. OPENAI."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "source",
  "as_of",
  "venue",
  "data",
  "attribution"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "symbol",
    "name",
    "description",
    "mark_price",
    "mark_valuation",
    "token_price",
    "implied_valuation",
    "token_premium_percent",
    "supply",
    "contract_address",
    "logo_url",
    "url"
   ],
   "properties": {
    "url": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ],
     "description": "PreStocks company page URL."
    },
    "name": {
     "type": "string",
     "description": "PreStocks token name, e.g. 'Anthropic PreStocks'."
    },
    "supply": {
     "anyOf": [
      {
       "type": "number"
      },
      {
       "type": "null"
      }
     ],
     "description": "Circulating token supply."
    },
    "symbol": {
     "type": "string",
     "description": "PreStocks token symbol, e.g. ANTHROPIC, OPENAI, SPACEX. Use as the {symbol} path param."
    },
    "logo_url": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ],
     "description": "Company logo image URL."
    },
    "mark_price": {
     "anyOf": [
      {
       "type": "number"
      },
      {
       "type": "null"
      }
     ],
     "description": "SPV mark price per token in USD — the underlying private company's marked value. NOT a last-trade price."
    },
    "description": {
     "type": "string",
     "description": "Plain-language overview of the underlying private company, plus the token's 1:1 SPV-backing note."
    },
    "token_price": {
     "anyOf": [
      {
       "type": "number"
      },
      {
       "type": "null"
      }
     ],
     "description": "Current on-chain token trading price in USD. Can diverge from mark_price — that gap is the premium/discount."
    },
    "mark_valuation": {
     "anyOf": [
      {
       "type": "number"
      },
      {
       "type": "null"
      }
     ],
     "description": "Company valuation in USD implied by the SPV mark (mark_price basis)."
    },
    "contract_address": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ],
     "description": "Solana mint address of the PreStocks SPV token."
    },
    "implied_valuation": {
     "anyOf": [
      {
       "type": "number"
      },
      {
       "type": "null"
      }
     ],
     "description": "Company valuation in 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-x402stock-xyz-prestocks-private-company-valuation-by-symbol-59c38c70/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.x402stock.xyz](https://www.zero.xyz/host/agents.x402stock.xyz/llms.txt)
