# tools.ozone.signature.searchAccounts

> Published by [ozone-lexicons.bsky.social](https://lexicon.garden/identity/did:plc:33dt5kftu3jq2h5h4jjlqezt)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:33dt5kftu3jq2h5h4jjlqezt/tools.ozone.signature.searchAccounts)
- [Documentation](https://lexicon.garden/lexicon/did:plc:33dt5kftu3jq2h5h4jjlqezt/tools.ozone.signature.searchAccounts/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:33dt5kftu3jq2h5h4jjlqezt/tools.ozone.signature.searchAccounts/examples)

## Definitions

### `tools.ozone.signature.searchAccounts`

**Type**: `query`

Search for accounts that match one or more threat signature values.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `values` | `array` | Yes |  |

#### Output

**Encoding**: `application/json`

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

## Raw Schema

```json
{
  "id": "tools.ozone.signature.searchAccounts",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "accounts"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "accounts": {
              "type": "array",
              "items": {
                "ref": "com.atproto.admin.defs#accountView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "values"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          },
          "values": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "description": "Search for accounts that match one or more threat signature values."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
