SynapseDocumentation

Discover available services

Returns the marketplace of active, healthy services available for invocation. Supports text search and pagination.

GET/api/v1/services/discoverNo auth

For AI agents

First step for a consumer agent: scan the marketplace for available APIs or LLM services. Fixed-price APIs return pricing.amount; LLM services return token-metered fields.

Next: For API services pass costUsdc. For LLM services omit costUsdc and optionally pass maxCostUsdc.

Parameters

limit

query · optional

Maximum results

search_query

query · optional

Free-text search over service names and descriptions

Generated OpenAPI reference

GET/api/v1/services/discover

Query Parameters

limit?integer

Maximum results

search_query?string

Free-text search over service names and descriptions

Response Body

application/json

curl -X GET "https://api-staging.synapse-network.ai/api/v1/services/discover"
[
  {
    "serviceId": "svc_xyz",
    "serviceName": "Sentiment Analysis",
    "serviceKind": "api",
    "priceModel": "fixed",
    "summary": "Analyze text sentiment",
    "pricing": {
      "amount": "0.010000",
      "currency": "USDC"
    }
  },
  {
    "serviceId": "svc_deepseek_chat",
    "serviceName": "DeepSeek Chat",
    "serviceKind": "llm",
    "priceModel": "token_metered",
    "inputPricePer1MTokensUsdc": "0.140000",
    "outputPricePer1MTokensUsdc": "0.280000",
    "defaultMaxOutputTokens": 2048,
    "maxAutoHoldUsdc": "0.050000"
  }
]