OpenDEX Solana Token API

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

An agent using this endpoint could change OpenDEX sentiment data associated with a wallet address.

Why it was flagged

The skill documents a state-changing API call that can cast a public sentiment vote using a wallet address. This is purpose-aligned, but users should ensure the agent only performs it when explicitly requested.

Skill content
POST /api/sentiment/:mint ... { "wallet": "<WALLET>", "sentiment": "bullish" } ... No token holder requirement.
Recommendation

Require explicit user approval before POST, DELETE, voting, submission, or other state-changing API calls.

What this means

Sharing or mishandling the API key could allow someone else to use the user's OpenDEX API access.

Why it was flagged

The skill uses an API key tied to a Solana wallet address for authenticated OpenDEX endpoints. This is expected for the integration, but it is credential and identity-related access.

Skill content
Community content endpoints under `/api/v1/` require an API key passed via the `X-API-Key` header. ... Register a free API key by sending a POST request with a Solana wallet address.
Recommendation

Only create or provide an API key when needed, store it securely, do not share seed phrases or private keys, and revoke the API key if it is exposed.

What this means

Users have less provenance information for deciding whether to trust the OpenDEX service endpoint.

Why it was flagged

The registry metadata does not provide a verified source or homepage, even though the skill directs users to an external API service.

Skill content
Source: unknown; Homepage: none
Recommendation

Verify the service identity and endpoint before sending wallet addresses or API keys.

What this means

Token queries, wallet addresses, and API keys may be visible to the OpenDEX API operator.

Why it was flagged

The skill routes API requests and credentials to an external provider endpoint. This is disclosed and central to the skill, but users should understand the data boundary.

Skill content
Base URL ... https://opendex-api-dy30.onrender.com ... Include the key in the `X-API-Key` header
Recommendation

Use only the intended OpenDEX endpoint, avoid sending unnecessary wallet information, and treat API keys as secrets.