# SNS Quicknode API

In collaboration with our friends at Quicknode, we're pleased to offer the SNS Quicknode marketplace plugin with many helpful API methods that allow you to interact with the SNS ecosystem. Learn more about the Quicknode marketplace here: [Quicknode](https://marketplace.quicknode.com/).

The Solana Name Service Quicknode marketplace plugin accepts requests using the [JSON-RPC-2.0](https://www.jsonrpc.org/specification) specification over `HTTP POST`.

This means that it accepts `HTTP POST` requests with the `Content-Type` header set to `application/json`, containing a json payload. For example:

```json
{
    "jsonrpc": "2.0",
    "method": "get_domain_key",
    "params": {
        "domain": "bonfida.sol"
    },
    "id": 5678
}
```

The response is a JSON object. For example:

```json
{
    "jsonrpc": "2.0",
    "result": "HKKp49qGWXd639QsuH7JiLijfVW5UtCVY4s1n2HANwEA",
    "id": 5678
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sns.id/dev/sns-api/sns-quicknode-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
