# Get Link Location Status §

## &#x20;<a href="#ref159853806" id="ref159853806"></a>

Check whether the record is on the blockchain at the link location:

<figure><img src="/files/C5q91hFx8uYt9w5VgVlM" alt="" width="375"><figcaption></figcaption></figure>

1. The record owner waits at least 10 minutes for any create, update or delete operation to be confirmed on the blockchain
2. The record owner checks the status of the link location
3. If not confirmed, the record owner either waits again waits again or retries the operation
4. The record owner optionally sends or publishes the link Location to any other parties

#### **Example** **code:**

{% tabs %}
{% tab title="cURL" %}

```bash
curl $URL/api/v1/linkedrecords/$LOC/status \
     -H "x-api-key: $KEY" \
     -H "accept: text/plain"
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
const response = await fetch('${url}/api/v1/linkedrecords/${loc}/status', {
  headers: {
    'x-api-key': '${key}',
    'accept': 'text/plain'
  }
});
```

{% endtab %}
{% endtabs %}

#### **Example** cURL **immediate** **response:**

```json
{
  "updatable": true,
  "confirmation": null
}
```

#### **Example** cURL r**esponse after waiting for 30 minutes:**

```json
{
  "updatable": true,
  "confirmation": {
    "confirmedBlocks": 3,
    "blockHash": "038ada8fba49a4972....3fb049b45553612c187cc",
    "blockTimestamp": "2024-01-02T13:20:05Z",
    "merkleProof": {
      "index": 2,
      "txOrId": "47175b2ee3345942....d58cd286198e1bcf97",
      "target": "00000020e1b721d55e....9c4ba58cf65ffff7f2000000000",
      "nodes": [
        "*",
        "d6e26a5e5ecbfa38923b....dcfc4bc99b29b4acda214c38"
      ],
      "targetType": "header",
      "proofType": null,
      "composite": null
    }
  }
}
```

The Merkle proof is described in the blockchain section.


---

# 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.teranode.group/nchain-event/linked-records/api-workflow/get-link-location-status.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.
