mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 19:36:51 +00:00
47 lines
1.4 KiB
Markdown
47 lines
1.4 KiB
Markdown
---
|
|
title: 'Accessing APIs'
|
|
description: 'Accessing APIs'
|
|
position: 1000
|
|
category: 'Developer Resources'
|
|
menuTitle: 'Accessing APIs'
|
|
---
|
|
|
|
## REST APIs
|
|
|
|
- Go to NocoDB Project, click the rightmost button and click ``Copy auth token``.
|
|
|
|

|
|
|
|
- Click the same button and click ``Swagger APIs Doc``.
|
|
|
|

|
|
|
|
- Select ``Schemes`` and Click ``Authorize``.
|
|
|
|

|
|
|
|
- Paste the token you just copy in step 1 and click Authorize
|
|
|
|

|
|
|
|
## GraphQL APIs
|
|
|
|
- Go to NocoDB Project, click the rightmost button and click ``Copy auth token``.
|
|
|
|

|
|
|
|
- Click the same button and click ``GraphQL APIs`.
|
|
|
|

|
|
|
|
- Click ``REQUEST HEADERS``.
|
|
|
|

|
|
|
|
- Paste the token you just copy in step 1.
|
|
|
|
```json
|
|
{
|
|
"xc-auth": "YOUR_AUTH_TOKEN"
|
|
}
|
|
``` |