27
/100
prowl
Benchmarked Apr 05, 2026

Coinlore

Cryptocurrencies prices, volume and more

crypto crypto_app public
Benchmark Your API

Score Breakdown

Auth Simplicity 10/10
Latency 5/10
Error Clarity 5/10
Documentation 3/10
Token Efficiency 2/10
First-Try Success 2/10
Consistency 0/10
Parseability 0/10

Benchmark Analysis Log

Full LLM thinking from the 4-phase benchmark pipeline.

Analyze
```json
{
  "service_type": "crypto_app",
  "base_url": "https://www.coinlore.com/api",
  "auth_method": "none",
  "auth_config": {},
  "endpoints": [
    {"path": "/tickers/", "method": "GET", "purpose": "list cryptocurrencies"},
    {"path": "/ticker/", "method": "GET", "purpose": "details of a specific cryptocurrency"},
    {"path": "/global/", "method": "GET", "purpose": "global cryptocurrency data"}
  ],
  "pricing_model": {"type": "free", "details": {}},
  "rate_limits": {"rpm": 60},
  "capabilities": ["spot_trading", "portfolio"],
  "crypto_specifics": {
    "supported_chains": ["ethereum", "bitcoin"],
    "token_count": 100,
    "has_websocket": false,
    "has_orderbook": false,
    "fee_structure": "none",
    "security_features": ["none"]
  }
}
```
Plan
```json
{
  "tests": [
    {
      "name": "list_cryptocurrencies",
      "endpoint": "/v1/tickers/",
      "method": "GET",
      "headers": {},
      "payload": {},
      "expected_status": 200,
      "expected_behavior": "Returns list of cryptocurrencies",
      "metrics": ["latency", "accuracy", "status_code"],
      "validation": {"field": "data", "type": "array", "min_length": 1}
    },
    {
      "name": "get_cryptocurrency_details",
      "endpoint": "/v1/ticker/",
      "method": "GET",
      "headers": {},
      "payload": {"id": "90"},
      "expected_status": 200,
      "expected_behavior": "Returns details of a specific cryptocurrency",
      "metrics": ["latency", "accuracy", "status_code"],
      "validation": {"field": "data", "type": "object", "must_contain": "id"}
    },
    {
      "name": "global_cryptocurrency_data",
      "endpoint": "/v1/global/",
      "method": "GET",
      "headers": {},
      "payload": {},
      "expected_status": 200,
      "expected_behavior": "Returns global cryptocurrency data",
      "metrics": ["latency", "accuracy", "status_code"],
      "validation": {"field": "data", "type": "object", "must_contain": "active_cryptocurrencies"}
    },
    {
      "name": "invalid_cryptocurrency_id",
      "endpoint": "/v1/ticker/",
      "method": "GET",
      "headers": {},
      "payload": {"id": "invalid"},
      "expected_status": 404,
      "expected_behavior": "Handles invalid IDs gracefully",
      "metrics": ["latency", "status_code"],
      "validation": {"field": "error", "type": "string"}
    }
  ],
  "pricing_probes": [],
  "stress_profile": {
    "concurrent_requests": 5,
    "duration_seconds": 10,
    "ramp_up": true
  }
}
```
Execute

0/4 tests passed

TestEndpointStatusLatency
list_cryptocurrenciesGET /v1/tickers/301396ms
get_cryptocurrency_detailsGET /v1/ticker/301144ms
global_cryptocurrency_dataGET /v1/global/301142ms
invalid_cryptocurrency_idGET /v1/ticker/30122ms
Interpret
```json
{
  "overall": 20,
  "dimensions": {
    "token_efficiency": 2.0,
    "first_try_success": 2.0,
    "response_parseability": 0.0,
    "error_clarity": 5.0,
    "doc_quality": 3.0,
    "auth_simplicity": 10.0,
    "latency": 5.0,
    "consistency": 0.0
  },
  "pricing_normalized": {
    "maker_fee_bps": null,
    "taker_fee_bps": null,
    "withdrawal_fee_usd": null,
    "free_tier_requests": null
  },
  "issues": ["Endpoints return HTML instead of JSON, indicating possible incorrect URLs or need for updated API paths.", "All benchmark tests result in 301 redirects indicating inaccessible API endpoints or incorrect base URLs."],
  "recommendations": ["Verify and update endpoint URLs to ensure they point to correct API paths returning JSON.", "Improve documentation to provide clear base URL and endpoint paths.", "Ensure consistent and correct data formats in API responses."]
}
```

Agent Readiness

x402 Payments
Not supported
Streaming
No
Sandbox
None
Agent Auth
public
SDKs
None listed
MCP Support
No

Want the full interactive view?

See operational metrics, LLM evaluations, agent readiness, and more.

Open in Dashboard