FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
I Watched an AI Agent Make 30+ Failed Requests Trying to Find My API Docs
How-ToWeb Development

I Watched an AI Agent Make 30+ Failed Requests Trying to Find My API Docs

via Dev.to WebdevSamuel Deering1mo ago

We run CryptoDataAPI , a market data API for crypto trading bots and AI agents. We had great documentation — a full /llms.txt file, OpenAPI spec, custom docs page. We thought we were set. Then we watched a Claude-based AI agent try to use our API for the first time. It made 30+ HTTP requests before finding a single working endpoint. The Request Log (All 404s) Here's what the agent actually tried, in order: GET /api/v1 → 404 GET /docs → 404 GET /redoc → 404 GET /api/v1/docs → 404 GET /api/v1/openapi.json → 404 GET /openapi.json → 404 GET /documentation → 404 GET /swagger → 404 GET /api-docs → 404 GET /schema → 404 GET /endpoints → 404 After exhausting standard paths, it started brute-force guessing: GET /api/v1/derivatives → 404 GET /api/v1/binance/ticker → 404 GET /api/v1/funding-rates → 404 # ...15 more 404s It then web-searched "cryptodataapi.com API documentation" — no useful results. Eventually it found working endpoints through pure trial and error. The irony? Our /llms.txt file —

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
19 views

Related Articles

How-To

10 Things Every Software Developer Should Know (But Most Ignore)

Medium Programming • 2d ago

The Deceptively Tricky Art of Designing a Steering Wheel
How-To

The Deceptively Tricky Art of Designing a Steering Wheel

Wired • 2d ago

7 Wireshark Filters That Instantly Make You Look Like a Network Expert
How-To

7 Wireshark Filters That Instantly Make You Look Like a Network Expert

Medium Programming • 2d ago

Week 6 — No New Problems. Just Me and Everything I Already Learned.
How-To

Week 6 — No New Problems. Just Me and Everything I Already Learned.

Medium Programming • 2d ago

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)
How-To

What OpenClaw Gets Wrong Out of the Box (And How to Fix It)

Medium Programming • 2d ago

Discover More Articles