Summary
Opinion Trade changed their public API base URL. The old host (openapi.opinion.trade/openapi) is either deprecated or unreachable; the current live base URL is proxy.opinion.trade:8443/openapi. Our spec and adapter configuration still point to the old host.
Impact
HIGH — all Opinion API calls will fail with connection errors if the old host is no longer resolving or routing traffic.
Details
- Old base URL:
https://openapi.opinion.trade/openapi
- New base URL:
https://proxy.opinion.trade:8443/openapi
- Affected file:
core/specs/opinion.yaml (servers block) and any hardcoded base URL in core/src/exchanges/opinion/
- Note: Opinion's adapter uses direct HTTP calls (not callApi), so both the spec servers block and any in-code base URL constant must be updated
Required Fix
- Update the
servers block in core/specs/opinion.yaml to use https://proxy.opinion.trade:8443/openapi
- Find and update any hardcoded base URL string in
core/src/exchanges/opinion/ (likely in a config or api file)
- Verify the new host is reachable and TLS cert is valid (port 8443 with a non-standard cert is worth checking)
Summary
Opinion Trade changed their public API base URL. The old host (
openapi.opinion.trade/openapi) is either deprecated or unreachable; the current live base URL isproxy.opinion.trade:8443/openapi. Our spec and adapter configuration still point to the old host.Impact
HIGH — all Opinion API calls will fail with connection errors if the old host is no longer resolving or routing traffic.
Details
https://openapi.opinion.trade/openapihttps://proxy.opinion.trade:8443/openapicore/specs/opinion.yaml(servers block) and any hardcoded base URL incore/src/exchanges/opinion/Required Fix
serversblock incore/specs/opinion.yamlto usehttps://proxy.opinion.trade:8443/openapicore/src/exchanges/opinion/(likely in a config or api file)