SerenAI

Pay Per Call Agentic Commerce

SuggestResponse

Response for suggest endpoint Returns publisher and agent recommendations based on task/query matching

Properties

PropertyTypeRequiredDescription
agents Array<any> Yes Matched agents sorted by relevance (agent templates coming soon)
publishers Array<PublisherSuggestion> Yes Matched publishers sorted by relevance
View JSON Schema
{
  "type": "object",
  "description": "Response for suggest endpoint\nReturns publisher and agent recommendations based on task/query matching",
  "required": [
    "publishers",
    "agents"
  ],
  "properties": {
    "agents": {
      "type": "array",
      "items": {},
      "description": "Matched agents sorted by relevance (agent templates coming soon)"
    },
    "publishers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PublisherSuggestion"
      },
      "description": "Matched publishers sorted by relevance"
    }
  }
}