# Royalties Status by Address 💰 - /nft/royalty\_status\_address/{address}

## 🔍 Endpoint Summary

This endpoint retrieves the royalty status for a given address. It returns a dictionary containing the address and the royalty status for that address.

## 📝 API Path Parameters

| Parameter | Type | Description                                     |
| --------- | ---- | ----------------------------------------------- |
| address   | str  | The address to retrieve the royalty status for. |

## 💾 Response

The response is a dictionary containing the following information:

```
{
    "address": "abcdefg",
    "royalty_status": {
        "total_royalties_owed": 1000,
        "transactions": [
            {
                "tx_id": "abcdefg",
                "timestamp": "2022-01-01T00:00:00Z",
                "amount": 100
            },
            ...
        ]
    }
}
```

## 🔨 Example Usage

```python
import requests

address = "abcdefg"

response = requests.get(f"https://api.example.com/nft/royalty_status_address/{address}")

print(response.json())
```

## 📈 Possible Use Cases

* Retrieving the current royalty status for a specific address to ensure that all owed royalties have been paid.
* Displaying the current royalty status for a specific address on a marketplace or portfolio website.
* Keeping track of the total amount of royalties owed for a specific address over time.


---

# 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://bewinxed.gitbook.io/radar-docs/api_documentation/docs/nft/royalty_status_address.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.
