Compares two user-supplied portfolios using Stock Trends decision scoring, align
Compares two user-supplied portfolios using Stock Trends decision scoring, alignment, and regime context.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
833 msmedian answer time
$1.25listed price per call
$1.25price 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://api.stocktrends.com/v1/portfolio/compare
| Category | Market data |
|---|---|
| Provider host | api.stocktrends.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 13 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $1.25 | 833 ms |
Example input (from the provider)
{
"body": {
"left": [
{
"symbol_exchange": "IBM-N",
"weight": 1
}
],
"right": [
{
"symbol_exchange": "MSFT-Q",
"weight": 1
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": true,
"properties": {
"category": {
"type": "string"
},
"description": {
"type": "string"
},
"family": {
"type": "string"
},
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"left": {
"items": {
"additionalProperties": false,
"properties": {
"symbol_exchange": {
"pattern": "^[A-Z0-9.]+-[A-Z]$",
"type": "string"
},
"weight": {
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"symbol_exchange",
"weight"
],
"type": "object"
},
"type": "array"
},
"right": {
"items": {
"additionalProperties": false,
"properties": {
"symbol_exchange": {
"pattern": "^[A-Z0-9.]+-[A-Z]$",
"type": "string"
},
"weight": {
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"required": [
"symbol_exchange",
"weight"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"left",
"right"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"metadataUrl": {
"type": "string"
},
"output": {
"additionalProperties": true,
"description": "Side-by-side portfolio evaluations and comparison metrics.",
"properties": {
"example": {},
"format": {
"type": "string"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"pricing_catalog": {
"type": "string"
},
"schemaUrl": {
"type": "string"
},
"title": {
"type": "string"
},
"tools_manifest": {
"type": "string"
}
},
"required": [
"input"
],
"type": "object"
}