# DeepNets Flagged Tokens List

> DeepNets Flagged Tokens List is a paid API for AI agents from api.deepnets.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a list of tokens that have been flagged for risk monitoring and filtering on Solana.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/flagged-tokens
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-fbf58bd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YsPMIndZU4PRr0JCtNUcX

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-deepnets-ai-fbf58bd2
```

Example prompt: Can you pull the current list of flagged tokens from DeepNets so I can check which Solana tokens have been marked as risky or suspicious for our monitoring pipeline?

## When to prefer this

Use this endpoint when you need a precomputed, aggregated list of risky or suspicious Solana tokens for bulk filtering or monitoring, rather than analyzing a single specific token. Ideal for building blocklists, screening portfolios, or setting up automated risk filters without querying individual tokens one by one.

## Known failure modes

- Payment required (402) if x402 micropayment of $0.01 USDC is not included
- Empty list if no tokens are currently flagged
- Authentication or payment verification failure
- Rate limiting or API unavailability (5xx errors)

## How this service works

Returns a list of flagged tokens for risk monitoring and filtering.

## Output

A list of token identifiers (likely mint addresses) that have been flagged by DeepNets AI for risk, safety concerns, or suspicious activity — useful for filtering, blacklisting, or monitoring purposes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepnets-ai-fbf58bd2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepnets.ai](https://www.zero.xyz/host/api.deepnets.ai/llms.txt)
