# vRAM

## Fetch vRAM Table Row

<mark style="color:green;">`POST`</mark> `https://api.dsp.io/v1/dsp/ipfsservice1/get_table_row`

Equivalent of eosio's `/v1/chain/get_table_row`

#### Request Body

| Name     | Type   | Description             |
| -------- | ------ | ----------------------- |
| contract | string | contract vRAM stored on |
| table    | string | table vRAM stored in    |
| scope    | string | scope vRAM stored in    |
| key      | string | vRAM table key          |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{    "name": "Cake's name",    "recipe": "Cake's recipe name",    "cake": "Binary cake"}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{    "message": "Ain't no cake like that."}
```

{% endtab %}
{% endtabs %}

## Fetch vRAM URI

<mark style="color:green;">`POST`</mark> `https://api.dsp.io/v1/dsp/ipfsservice1/get_uri`

Fetch IPFS URI

#### Request Body

| Name | Type   | Description               |
| ---- | ------ | ------------------------- |
| uri  | string | ipfs\://... the IPFS hash |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{    "name": "Cake's name",    "recipe": "Cake's recipe name",    "cake": "Binary cake"}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{    "message": "Ain't no cake like that."}
```

{% endtab %}
{% endtabs %}


---

# 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.liquidapps.io/liquidapps-documentation/dapp-service-providers/dsps/dsp-api-endpoints/vram.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.
