Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ keywords: ['Community vs Paid', 'CE vs EE', 'Community Edition vs Enterprise Edi
| | [Import to new table: CSV, XLS, JSON](/docs/product-docs/tables/create-table-via-import#import-table-from-csv--excel--json) | ✅ | ✅ | |
| | [Import: Airtable](/docs/product-docs/bases/import-base-from-airtable) | ✅ | ✅ | |
| | [Import to existing table](/docs/product-docs/tables/import-data-into-existing-table) | ✅ | ✅ | |
| **Developers** | [Public REST API](/docs/product-docs/developer-resources/rest-apis) | ✅ | ✅ | |
| **Developers** | [Core REST API](/docs/product-docs/developer-resources/rest-apis) | ✅ | ✅ | |
| | [Advanced REST API](/docs/product-docs/developer-resources/rest-apis) | ❌ | ✅ | View & Collaboration APIs |
| | [Swagger specification](/docs/product-docs/developer-resources/rest-apis/accessing-apis#swagger-ui) | ✅ | ✅ | |
| | [API tokens](/docs/product-docs/account-settings/api-tokens) | ✅ | ✅ | |
| | API token permissions | ❌ | Coming soon | Q4 2025 |
Expand Down
15 changes: 7 additions & 8 deletions content/docs/developer-resources/rest-apis/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,19 @@ title: 'REST APIs'
description: 'NocoDB REST API Overview'
---

Once you've created the schemas, you can manipulate the data or invoke actions using the REST APIs. We provide several types of APIs for different usages. Refer to the following links for more details:
NocoDB provides a comprehensive set of REST APIs that allow you to interact programmatically with your data, metadata, and workspace resources. These APIs make it possible to integrate NocoDB with external applications, automate workflows, build custom tools, or manage your bases at scale.

- [Meta APIs](https://meta-apis-v2.nocodb.com/)
Whether you want to query records, update fields, manage tables, or retrieve metadata, NocoDB exposes clear and consistent API surfaces designed for both simple and advanced use cases. This document outlines the available API types, explains how to construct endpoints, and guides you through locating the required IDs for making requests.

- [Data APIs](https://data-apis-v2.nocodb.com/)
Use this reference as your starting point for building reliable, API-driven integrations with NocoDB.

You will need an API key and endpoint to use the API. The endpoint URL for hosted instances of NocoDB is in the format `https://app.nocodb.com/api/v2/tables/TABLEID/records` and `https://app.nocodb.com/api/v2/meta/bases/BASEID/info`.
- [Data APIs](https://data-apis-v3.nocodb.com/)
- [Meta APIs](https://meta-apis-v3.nocodb.com/)

- You can find a TABLEID by going to any table in NocoDB > Details > API Snippets.
- You can find your BASEID by clicking the menu icon next to any database, rest APIs > and seeing the BASEID in the url.

Additional information on the REST APIs is provided below.
<Callout type="info">**Advanced** Meta APIs related to Views and Collaboration features are available only on NocoDB Cloud Business+ plans and Self-hosted Enterprise editions.</Callout>

- When querying using v3 apis, see [v3 Where Clause](/docs/product-docs/developer-resources/rest-apis#v3-where-query-parameter) for a slight difference between the two version's where clause.
When querying using v3 apis, see [v3 Where Clause](/docs/product-docs/developer-resources/rest-apis#v3-where-query-parameter) for a slight difference between the two version's where clause.


## Finding Your API IDs
Expand Down
Loading