# place.stream.multistream.listTargets

> Published by [did:web:longos.iameli.link](https://lexicon.garden/identity/did:web:longos.iameli.link)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.multistream.listTargets)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.multistream.listTargets/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.multistream.listTargets/examples)

## Definitions

### `place.stream.multistream.listTargets`

**Type**: `query`

List a range of targets for rebroadcasting a Streamplace stream.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | The number of targets to return. |
| `cursor` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `targets` | `array` | Yes |  |

### `place.stream.multistream.listTargets#record`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes |  |
| `uri` | `string` (at-uri) | Yes |  |
| `value` | `unknown` | Yes |  |

## Raw Schema

```json
{
  "id": "place.stream.multistream.listTargets",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "targets"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "targets": {
              "type": "array",
              "items": {
                "ref": "place.stream.multistream.defs#targetView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "The number of targets to return."
          },
          "cursor": {
            "type": "string"
          }
        }
      },
      "description": "List a range of targets for rebroadcasting a Streamplace stream."
    },
    "record": {
      "type": "object",
      "required": [
        "uri",
        "cid",
        "value"
      ],
      "properties": {
        "cid": {
          "type": "string",
          "format": "cid"
        },
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "value": {
          "type": "unknown"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
