# Images

Domain images can vary based on the rarity of a domain, if a domain contains an emoji character, or if a user has purchased a custom domain background during one of our limited time ecosystem artist collaborations.

### Base URL <a href="#base-url" id="base-url"></a>

Please note the base URL for images differs from other endpoints.

* The base URL of the API is:

```
https://image-api.bonfida.com
```

API response times can vary based on if a request for an image has been previously made. The image is generated upon the first request and then cached, greatly reducing subsequent response times.

### Get a list of domain images <a href="#get-a-list-of-domain-images" id="get-a-list-of-domain-images"></a>

This endpoint can be used to retrieve images for a list of domains.

> Request

```
GET /image?domain=foo&domain=bar
```

> Response

```json
{
  "result": [
    { "domain": "foo", "image": "https://..." },
    { "domain": "bar", "image": "https://..." }
    // ...
  ]
}
```


---

# 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/images.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.
