List API keys for wallet
curl --request POST \
--url https://api.0xarchive.io/v1/web3/keys \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"signature": "<string>"
}
'import requests
url = "https://api.0xarchive.io/v1/web3/keys"
payload = {
"message": "<string>",
"signature": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({message: '<string>', signature: '<string>'})
};
fetch('https://api.0xarchive.io/v1/web3/keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.0xarchive.io/v1/web3/keys"
payload := strings.NewReader("{\n \"message\": \"<string>\",\n \"signature\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"keys": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"key_prefix": "0xa_live_abc1",
"is_active": true,
"last_used_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
],
"wallet_address": "<string>"
}{
"code": 401,
"error": "Missing or invalid API key. Provide X-API-Key header."
}{
"code": 429,
"error": "Rate limit exceeded"
}List API keys for wallet
0xArchive API reference for List API keys for wallet. Includes authentication, parameters, response shape, examples, and route-safe implementation notes.
POST
https://api.0xarchive.io
/
v1
/
web3
/
keys
List API keys for wallet
curl --request POST \
--url https://api.0xarchive.io/v1/web3/keys \
--header 'Content-Type: application/json' \
--data '
{
"message": "<string>",
"signature": "<string>"
}
'import requests
url = "https://api.0xarchive.io/v1/web3/keys"
payload = {
"message": "<string>",
"signature": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({message: '<string>', signature: '<string>'})
};
fetch('https://api.0xarchive.io/v1/web3/keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.0xarchive.io/v1/web3/keys"
payload := strings.NewReader("{\n \"message\": \"<string>\",\n \"signature\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"keys": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"key_prefix": "0xa_live_abc1",
"is_active": true,
"last_used_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z"
}
],
"wallet_address": "<string>"
}{
"code": 401,
"error": "Missing or invalid API key. Provide X-API-Key header."
}{
"code": 429,
"error": "Rate limit exceeded"
}Body
application/json
Response
List of API keys
Hide child attributes
Hide child attributes
Unique key ID
Key name
First characters of the key for identification
Example:
"0xa_live_abc1"
Whether the key is currently active
Last usage timestamp
Creation timestamp
The wallet address
Last modified on August 13, 2026
Was this page helpful?
⌘I