> For the complete documentation index, see [llms.txt](https://tabichain.gitbook.io/tabichain/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tabichain.gitbook.io/tabichain/developer-guide/for-developer.md).

# Getting Started

### Tabi chain API document

#### **Online Tabi chain API document**

<https://api.testnetv2.tabichain.com/swagger/>

#### **Local Tabi chain API document of full node**

```shell
~$ cd .tabid/config
~/.tabid/config$ vi app.toml
```

#### Config the \[api] section

```
[api]
# Enable defines if the API server should be enabled
enable = true

# Swagger defines if swagger documentation shold automatically be registered
swagger = true
```

open the link <http://127.0.0.1:1317/swagger/> in your web browser

### EVM Rpc

#### **Online RPC service**

<https://rpc.testnetv2.tabichain.com>

#### **Local RPC service of full node**

```shell
~$ cd 
~$ cd .tabid
~/.tabid$ vi config/app.toml
```

#### Config the \[json-rpc] section

```
[json-rpc]
# Enable defines if the gRPC server should be enabled.
enable = true
```

access the rpc service:

<http://127.0.0.1:8545>
