ruxox
Start
Start
← Back to blog

API INTEGRATION EXPLAINED.

What API integration actually means in practice, how two systems talk to each other, the four patterns worth knowing, what it costs, and the failure modes that catch most teams out.

Most businesses do not have a software problem. They have a joining-up problem. The CRM knows one thing, the accounting system knows another, the warehouse knows a third, and a human spends their week copying between them. API integration is the work of making those systems talk directly.

An API (application programming interface) is a defined way for one piece of software to ask another for data or to tell it to do something. API integration is the process of connecting two or more systems through those interfaces so information moves automatically. The API is the socket; the integration is the wiring you build to plug into it.

How an API call actually works

Strip away the jargon and a typical API call has five steps:

  1. Request. Your system sends a message to a specific URL — an endpoint — saying what it wants (GET /customers/482) or what it wants done (POST /invoices).
  2. Authentication. The request carries proof of identity: an API key, an OAuth token, or a signed credential. Without it the other system refuses to answer.
  3. Processing. The receiving system validates the request, checks permissions, and does the work.
  4. Response. It sends back structured data — almost always JSON — plus a status code. 200 means success, 401 means your credentials failed, 429 means you are being rate-limited, 500 means something broke on their end.
  5. Handling. Your system reads the response, maps the fields into your own data model, and decides what to do if the answer was an error.

That last step is where integrations are won or lost. Sending a request is easy. Deciding what happens when the response never arrives is the actual engineering.

The four integration patterns

Nearly every integration you will ever commission is one of these four shapes. Knowing which one you need makes conversations with developers far more productive.

PatternHow it worksBest for
PollingYour system asks “anything new?” on a scheduleSystems with no webhook support; tolerable delay
WebhooksThe other system pushes an event to you the moment it happensReal-time reactions — new order, payment received
Batch / scheduled syncBulk transfer on a timer, often overnightReporting, reconciliation, large data volumes
Direct request/responseYou call the API live while a user waitsAddress lookup, price checks, availability

Most real systems combine them. A typical e-commerce integration might use webhooks for new orders, direct calls for live stock checks, and an overnight batch job to reconcile the day's numbers against the accounting system.

Third-party API integration vs custom API

There is an important distinction. Third-party API integration means connecting to someone else's system on their terms — Stripe, HubSpot, Xero, Shopify. You work within their rate limits, their data model, and their release schedule. Building your own API means exposing your data so other systems (or your own mobile app) can consume it. The first is mostly mapping and error handling; the second is design work, because you are creating a contract other developers will depend on.

What API integration costs

Cost tracks three things: how well-documented the target API is, how far apart the two data models are, and how bad it is if the sync fails.

Integration typeTypical cost
Simple one-way sync, well-documented modern API£1,200–£3,500
Two-way sync with field mapping and conflict rules£3,500–£9,000
Multi-system integration (3+ platforms, orchestration)£9,000–£30,000
Legacy or undocumented system (SOAP, CSV/SFTP, screen-scraping)£6,000–£25,000+

Legacy systems are expensive for a specific reason: without documentation, someone has to determine the behaviour experimentally, and every undocumented edge case is discovered in production. Budget contingency for anything older than about a decade.

Where integrations break

Rate limits. Every API caps how often you can call it. Hit the cap and you get 429 responses. A well-built integration backs off and retries with increasing delays; a naive one silently drops data.

Partial failure. The dangerous case is not total failure — that is obvious. It is when three of five records sync and two do not. Without idempotency (safe repeat operations) and a record of what succeeded, retries create duplicates.

Schema drift. The vendor adds a field, renames another, or deprecates an endpoint. Integrations that assume a fixed response shape break quietly. Version-pin where possible and subscribe to the vendor's developer changelog.

Credential expiry. OAuth tokens expire and refresh tokens get revoked. An integration with no alerting can be dead for a fortnight before anyone notices the CRM has stopped updating.

Timezone and encoding. Unglamorous, endlessly recurring. Store timestamps in UTC, convert only at display, and be explicit about character encoding at every boundary. You can sanity-check timestamp conversions with our timestamp converter.

What to specify before you commission one

Answer these before development starts and you will avoid most of the expensive surprises:

  • Direction of truth. If both systems change the same record, which one wins?
  • Latency tolerance. Must it be instant, or is every 15 minutes fine? Real-time costs more.
  • Volume. Ten records a day and ten thousand an hour are different architectures.
  • Failure behaviour. Retry silently, queue for later, or alert a human?
  • Field mapping. Where exactly does each field land, and what happens to fields with no home?
  • Monitoring. How will you know it broke — before a customer tells you?

Integration platforms vs custom code

Tools like Zapier and Make connect popular systems without engineering, and for simple, low-volume, non-critical flows they are the right answer. They stop being the right answer when you need conditional logic across several steps, high volume (per-task pricing scales badly), custom data transformation, or an audit trail you control. The switching point is usually somewhere between one and three thousand tasks a month — we cover the trade-off in detail in Zapier vs custom automation.

The honest summary: an integration is not finished when data moves once. It is finished when it keeps moving unattended, tells you when it cannot, and never quietly loses a record.

FAQ

Common questions

What does API integration mean?

API integration means connecting two or more software systems through their application programming interfaces so that data moves between them automatically, without a person copying it. The API is the defined interface each system exposes; the integration is the code you build to connect them, map the fields, and handle errors.

What is the difference between an API and an integration?

An API is the interface a system exposes — the set of endpoints, rules, and data formats it will accept. An integration is the working connection you build using that interface, including authentication, field mapping, error handling, and monitoring. The API is the socket; the integration is the wiring.

How much does an API integration cost?

A simple one-way sync against a well-documented modern API typically costs £1,200–£3,500. A two-way sync with field mapping and conflict resolution runs £3,500–£9,000. Multi-system orchestration across three or more platforms is £9,000–£30,000. Legacy or undocumented systems cost more because behaviour has to be discovered experimentally.

What is a webhook and how is it different from polling?

With polling, your system repeatedly asks the other system whether anything has changed — simple but wasteful and delayed. With a webhook, the other system pushes a message to you the instant an event occurs. Webhooks are better for real-time reactions; polling is the fallback when the target system has no webhook support.

Should I use Zapier or build a custom integration?

Use a platform like Zapier or Make for simple, low-volume, non-critical connections between popular tools. Build custom when you need multi-step conditional logic, high volume (per-task pricing scales badly), bespoke data transformation, or an audit trail you fully control. The crossover point is often around one to three thousand tasks per month.

Why do API integrations break?

The five common causes are rate limiting (too many requests), partial failure (some records sync and some do not), schema drift (the vendor changes their data format), credential expiry (OAuth tokens lapse), and timezone or encoding mismatches. Good integrations handle all five with retries, idempotency, version pinning, and alerting.

Work with us

Need two systems talking to each other?

We build API integrations that keep running unattended — with retries, monitoring, and alerting built in. Fixed price, scoped before we start.

Scope an integration
/ Topics
API integrationthird-party APIwebhookssystem integrationdata sync
Free project estimateNo obligation · reply in 48h
Get estimate