> For the complete documentation index, see [llms.txt](/llms.txt).

# `dag_resolve`

## `/api/v0/dag/resolve`[​](#apiv0dagresolve "Direct link to apiv0dagresolve")

Resolve IPLD block.

### Request[​](#request "Direct link to Request")

- Syntax
- Example

```
curl "https://ipfs.infura.io:5001/api/v0/dag/resolve?arg=<key>" \
  -X POST \
  -u "<YOUR-API-KEY>:<YOUR-API-KEY-SECRET>"

```

```
curl "https://ipfs.infura.io:5001/api/v0/dag/resolve?arg=QmZtmD2qt6fJot32nabSP3CUjicnypEBz7bHVDhPQt9aAy" \
  -X POST \
  -u "<YOUR-API-KEY>:<YOUR-API-KEY-SECRET>"

```

#### Request parameters[​](#request-parameters "Direct link to Request parameters")

- `arg` _[Required]_ - The IPFS object hash; the path to resolve.

### Response[​](#response "Direct link to Response")

On success, the call to this endpoint will return with 200 and the following body:

#### Body[​](#body "Direct link to Body")

```
{
  "Cid": {
    "/": "QmZtmD2qt6fJot32nabSP3CUjicnypEBz7bHVDhPQt9aAy"
  },
  "RemPath": ""
}

```

#### Result fields[​](#result-fields "Direct link to Result fields")

- `Cid` - [Content ID](https://github.com/multiformats/cid).
- `RemPath`
