# zone.stratos.sync.getBlob

> Published by [lexicon.northsky.app](https://lexicon.garden/identity/did:plc:6uxgo3ypovauub7nblwylqyv)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.sync.getBlob)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.sync.getBlob/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.sync.getBlob/examples)

## Definitions

### `zone.stratos.sync.getBlob`

**Type**: `query`

Get a blob by CID with boundary-based access control.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes |  |
| `did` | `string` (did) | Yes |  |

#### Output

**Encoding**: `*/*`

#### Errors

- **BlobNotFound**
- **Forbidden**

## Raw Schema

```json
{
  "id": "zone.stratos.sync.getBlob",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "BlobNotFound"
        },
        {
          "name": "Forbidden"
        }
      ],
      "output": {
        "encoding": "*/*"
      },
      "parameters": {
        "type": "params",
        "required": [
          "did",
          "cid"
        ],
        "properties": {
          "cid": {
            "type": "string",
            "format": "cid"
          },
          "did": {
            "type": "string",
            "format": "did"
          }
        }
      },
      "description": "Get a blob by CID with boundary-based access control."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
