AdAI
Definition

Endpoint is a specific URL where software receives requests. When you call an API, you are calling one of its endpoints. When you deploy an AI model on a cloud platform, the platform gives you an endpoint URL where your applications can send data and get predictions back. Each endpoint typically does one job: create a contact, search records, generate a response, classify an image.

Key Takeaways

  • An endpoint is one specific URL where a piece of software accepts requests. An API has many endpoints, each doing one job.
  • AI model endpoints are how hosted models get called. Whether you are using OpenAI, Anthropic, AWS SageMaker, Google Vertex AI, or Hugging Face, you call an endpoint and get a response.
  • For most SMBs, endpoints are invisible. The software you use is calling them behind the scenes. They become visible only when you build custom integrations or deploy custom models.
  • Endpoint security is a different topic. In that context, an endpoint is a device on a network (laptop, phone, server), and endpoint security tools (CrowdStrike, SentinelOne, Microsoft Defender) protect those devices.
  • Watch for rate limits, authentication, and version changes when working with endpoints. The three most common causes of integrations breaking unexpectedly.
26-50
APIs power the average modern business application, each of which exposes multiple endpoints for different operations
Source: Postman State of the API Report, 2024
73%
increase in AI-driven API endpoint traffic on the Postman platform in a single year, reflecting the rise of AI agents calling endpoints on behalf of users
Source: Postman State of the API Report, 2024

In Simple Terms

Think of an API as the front desk of a hotel. The whole desk exists to handle requests, but different requests go to different people: one person for check-in, one for billing, one for room service. Each of those people is an endpoint. They have their own job, their own form to fill in, their own response.

In software, an endpoint is the specific URL you call to get one specific thing done. The HubSpot CRM has hundreds of endpoints. One creates a contact. One searches deals. One sends a marketing email. The same broad "API" gives you access to all of them.

In AI specifically, an endpoint is where you send data to get a prediction or a generated response back. OpenAI's chat endpoint accepts a conversation and returns the model's next message. Amazon SageMaker lets you deploy your own trained model and gives you an endpoint URL for it. The mechanics are the same as any other API endpoint. The work it does is AI.

The Three Meanings of "Endpoint"

API endpoint

A URL within an API that performs one specific function. The most common meaning in the AI and automation context. When you connect Stripe to your CRM, the connection works by calling Stripe's endpoints (create payment, fetch customer, refund charge) from the CRM.

AI model endpoint

A specialised API endpoint that wraps a deployed AI model. Sends data in, gets prediction or generation out. OpenAI's chat completions endpoint, Anthropic's messages endpoint, your custom SageMaker model endpoint, a Replicate or Hugging Face hosted model URL. All examples.

Endpoint device (security context)

A computing device on a network: a laptop, phone, tablet, server, IoT device. Endpoint security software (CrowdStrike Falcon, SentinelOne, Microsoft Defender for Endpoint) protects these devices from malware, ransomware, and unauthorised access. Same word, completely separate field.

When Endpoints Matter for an SMB

For most SMBs, endpoints are background mechanics. You buy a tool, you flip an integration on in settings, and the underlying endpoint calls happen invisibly.

Endpoints become a topic when you are building. If you are wiring up a custom workflow in n8n, Make, or Zapier, each step is essentially an endpoint call from one tool to another. If you are commissioning a custom AI agent, the agent is calling AI model endpoints (probably OpenAI or Anthropic) along with endpoints on your CRM, calendar, billing system, and so on.

The practical things to manage when you reach this point.

Rate limits. Every endpoint has a cap on how often it can be called. OpenAI imposes per-minute and per-day limits that scale with your usage tier. HubSpot limits how many endpoint calls you can make per day, per integration. Hit the limit, the endpoint returns an error until the window resets. Most SMBs are nowhere near these limits, but it is the first thing to check when an integration starts failing.

Authentication. Every endpoint that touches sensitive data needs an API key, OAuth token, or similar. Treating these like passwords (not committed to code repositories, not shared in plain text, rotated periodically) is the security baseline.

Version changes. Providers release v2, v3, v4 of their APIs and eventually retire older versions. An integration built against an old endpoint will start failing the day the provider turns it off. Subscribing to your AI and SaaS vendors' developer changelogs is the cheapest defence.

Frequently Asked Questions

What is the difference between an API and an endpoint?
An API is the full set of ways one piece of software can be called by another. An endpoint is one specific entry point within that API. The HubSpot API has many endpoints: one for creating contacts, one for searching deals, one for sending emails. The API is the whole interface. Each endpoint is one job within it.
What is an AI model endpoint?
It is a URL where you can send data and receive a model's output. When you call OpenAI's API, you are hitting an endpoint like https://api.openai.com/v1/chat/completions. When you deploy a custom model on Amazon SageMaker or Google Vertex AI, the platform gives you a unique endpoint URL that your applications can call. Same idea as a web URL, but the response is an AI prediction or generation.
What does 'endpoint security' mean? Is that the same thing?
Different topic. Endpoint security refers to securing the devices (laptops, phones, servers) on a network, each of which is called an endpoint in that context. Tools like CrowdStrike, SentinelOne, and Microsoft Defender for Endpoint sit in this category. The word collides with the API meaning but the field is unrelated.
How do SMBs use AI endpoints in practice?
Indirectly, almost always. When you use ChatGPT, Claude, HubSpot AI, or any AI feature inside business software, the software is calling an AI endpoint under the hood. Directly: an SMB building a custom AI agent in n8n, Make, or a custom script calls AI endpoints itself. Hosted model endpoints (AWS SageMaker, Google Vertex AI, Hugging Face Inference Endpoints, Replicate) let SMBs deploy and call custom models without managing infrastructure.
What should I watch for when integrating with an endpoint?
Three things. Rate limits: most APIs cap how many calls you can make per minute or per day. Authentication: every endpoint needs an API key or token, which you have to store securely. Versioning: when the provider releases a new version of their API (v1, v2), the old endpoint may eventually be retired, and you have to update your integration. None of this is hard, but skipping it causes failures that look mysterious until you check.

Related Glossary Terms & Resources

Join 5,000+ SMB owners getting weekly AI agent insights

Subscribe Free