top of page

Locating Your Airtable Base ID: A Step-by-Step Guide

Published on Mar 30th, 2024

Working with Airtable means interfacing with a highly flexible and dynamic platform for organizing data, but sometimes, when developing integrations or working with the Airtable API, you need to know your Base ID. Understanding what a Base ID is and how to locate it can enhance your efficiency in managing your databases or integrating with other services.


What is an Airtable Base ID?


The Airtable Base ID is a unique identifier assigned to each database (referred to as a 'base') you create on Airtable. It's essential for developers, as it allows you to reference a specific base in your API calls.


Finding Your Base ID


To find your Airtable Base ID, follow these steps:



  1. Log in to your Airtable account and open the base you wish to integrate with.



  2. Navigate to the Help menu in the upper right corner, then click on API documentation. This action will open a new tab in your browser that takes you to the API documentation for your base.



  3. Within the introductory section of the API documentation, locate the Introduction part that includes a unique URL for your base. It usually looks something like https://api.airtable.com/v0/appXXXXXXXXXXXXXX/. The alphanumeric code after /v0/ is your Base ID.





  1. Copy the Base ID and keep it secure for your integration purposes.


Best Practices for Managing Your Base ID



  • Keep it confidential: Your Base ID is a part of the credentials that grant access to your base. Treat it like a password.



  • Store it securely: Use a secure method of storage, such as environment variables in your development process, to avoid exposing it in your codebase or version control.




Knowing how to find your Airtable Base ID is a fundamental skill for developers looking to build robust applications with Airtable. With this guide, you should be able to retrieve your Base ID easily for whatever project you might be working on.


bottom of page