> For the complete documentation index, see [llms.txt](https://docs.coreid.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.coreid.org/http-api.md).

# HTTP API

**Convert Name to Address**

```
// Replace "123.core" with your name
const name = "123.core";
const response = await fetch(`https://coreid.org/api?method=getAddress&name=${name}`);
const { address } = await response.json();
//0x810791a3f967EB66B75aEb62251795d181bce680
```

**Convert Address to Name**

```
// Replace "address" with the address you want to lookup.
const address = "0x1234...abcdef";
const response = await fetch(`https://coreid.org/api?method=getName&address=${address}`);
const { name } = await response.json();
```

#### Get all domains

```
const response = await fetch(`https://coreid.org/api?method=getAllDomains`);
```

#### Get Websites

```
const response = await fetch(`https://coreid.org/api?method=getWebsites`);
```
