Urgent.News

What's breaking now, across thousands of outlets.

Tech

Custom API Development Cost: What You Pay For in 2026

Anyone estimating custom API development cost from the number of endpoints is going to be wrong, usually by a factor of three. Endpoints are the cheapest part. A dozen of them, reading and writing data you already hold, is a fortnight's work for a competent backend developer. What costs money is everything that turns those endpoints into something another company will build their business on:…

Custom API development costs are heavily influenced by the level of exposure the API has. An internal API, consumed solely by your own applications, typically costs between £10,000 and £30,000. A partner API, used by a few named integrators, ranges from £40,000 to £100,000. A public API, integral to your product with self-service onboarding and published contracts, begins at around £100,000 and incurs ongoing costs post-launch.

The true value of an API lies in the extras that turn it into a reliable, trustworthy product. Design and contract specifications are essential, as they lay out the resource model, naming conventions, error formats, pagination methods, and filtering syntax. Skipping this process can result in an API with endpoints solving the same problem in different ways, causing confusion among consumers.

Authentication and authorization are crucial for partner and public APIs, necessitating token-based flows with scopes, expiration, rotation, and per-consumer permission enforcement. Rate limiting and quotas protect your infrastructure from overburdening requests from any single integrator. Comprehensive documentation, including a getting-started guide, authentication walkthrough, worked examples, and a changelog, is vital.

A sandbox environment for partners is also essential, as they won't test against production. Observability features like request volume tracking, error rate analysis, and latency monitoring by consumer help identify issues quickly. Testing, especially contract tests that catch unintentional response shape changes, ensures continued development without breaking integrations.

For public or product APIs, additional requirements include self-service registration, key management, published rate limits, a status page, usage-based metering, comprehensive documentation, and a support process. These factors can significantly increase the cost, especially if billing is tied to usage.

Written by urgent.news from Dev.to's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.

Read the original at dev.to →

More in Tech

I Forced Fsync. The Model Looked Fine.

The remote model was not my bottleneck today. The work after the last token was. I kept that waterfall because prettier charts lied. Why did first token feel like the whole wait?

A Null Priority Bug Between UI, Database, and Zod

While working on FocusYar, I found a bug when editing a Task without a priority. I created a Task with only a title, so the database stored: priority: null Later, when I opened the edit form and left…

  • Bug caused by null priority value in FocusYar application
  • Zod schema initially checked for undefined, not null
  • Resolved by modifying edit schema to check for null values

More from Thursday 17 September →