3 min readUpdated Mar 2, 2026

Finding API Documentation

The API Builder asks you for specific details — base URL, auth type, endpoint paths, parameters, and response format. All of this comes from the API provider's documentation. Here's where to look and what to look for.


Where to Find API Docs

SourceWhat It Looks LikeExamples
Developer PortalA dedicated docs site with guides, reference, and examplesStripe Docs, Twilio Docs
Swagger / OpenAPIInteractive API explorer that lets you try endpoints in the browserOften hosted at /docs or /swagger on the API's domain
Postman CollectionsPre-built request collections you can import and testPublished on Postman
README / GitHubDocumentation bundled with the project source codeCommon for open-source APIs

What to Look For

When reading API docs, gather these five pieces of information:

1. Base URL

Usually listed at the top of the docs or in a "Getting Started" section. Look for phrases like "API Base URL", "Endpoint", or "Server URL".

2. Authentication Method

Look for "Authentication", "Authorization", or "API Keys". The docs will tell you:

3. Endpoints

The individual operations the API supports. Each will list:

4. Request Parameters

For each endpoint, the docs describe what parameters it accepts, where each goes (query, path, header, body), and whether they're required.

5. Response Format

Most docs include a "Response" or "Example Response" section showing sample JSON. This is exactly what you'll paste into the API Builder's JSON parser.


Testing Before Building

Before configuring an integration in the API Builder, it's smart to verify the API works as expected:

ToolBest ForHow to Get It
PostmanVisual API testing with saved historypostman.com (free)
cURLQuick command-line testingBuilt into macOS/Linux; available for Windows
BrowserSimple GET requestsJust paste the URL into your browser address bar
Swagger UIAPIs that provide interactive docsHosted by the API provider

Why test first? The API Builder trusts you to provide accurate information. If you paste a base URL that's wrong, or a sample response from an outdated version of the API, your integration will fail at runtime. A quick test confirms everything works before you build.


Next Steps