> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corsair.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Database

> Coinbase local sync: searchable entities, `.search()` filters, and operators.

The Coinbase plugin syncs data locally. Use `corsair.coinbase.db.<entity>.search({ data, limit?, offset? })` with the filters listed per entity.

<Info>
  **New to Corsair?** See [database operations](/concepts/database), [data synchronization](/concepts/integrations), and [multi-tenancy](/concepts/multi-tenancy).
</Info>

## Accounts

Path: `coinbase.db.accounts.search`

```ts theme={null}
const rows = await corsair.coinbase.db.accounts.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field           | Type      | Operators                                  |
| --------------- | --------- | ------------------------------------------ |
| `entity_id`     | `string`  | equals, contains, startsWith, endsWith, in |
| `id`            | `string`  | equals, contains, startsWith, endsWith, in |
| `name`          | `string`  | equals, contains, startsWith, endsWith, in |
| `primary`       | `boolean` | equals                                     |
| `type`          | `string`  | equals, contains, startsWith, endsWith, in |
| `created_at`    | `string`  | equals, contains, startsWith, endsWith, in |
| `updated_at`    | `string`  | equals, contains, startsWith, endsWith, in |
| `resource`      | `string`  | equals, contains, startsWith, endsWith, in |
| `resource_path` | `string`  | equals, contains, startsWith, endsWith, in |
| `ready`         | `boolean` | equals                                     |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***

## Currencies

Path: `coinbase.db.currencies.search`

```ts theme={null}
const rows = await corsair.coinbase.db.currencies.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field       | Type     | Operators                                  |
| ----------- | -------- | ------------------------------------------ |
| `entity_id` | `string` | equals, contains, startsWith, endsWith, in |
| `id`        | `string` | equals, contains, startsWith, endsWith, in |
| `name`      | `string` | equals, contains, startsWith, endsWith, in |
| `min_size`  | `string` | equals, contains, startsWith, endsWith, in |
| `status`    | `string` | equals, contains, startsWith, endsWith, in |
| `message`   | `string` | equals, contains, startsWith, endsWith, in |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***

## Payment Methods

Path: `coinbase.db.paymentMethods.search`

```ts theme={null}
const rows = await corsair.coinbase.db.paymentMethods.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field            | Type      | Operators                                  |
| ---------------- | --------- | ------------------------------------------ |
| `entity_id`      | `string`  | equals, contains, startsWith, endsWith, in |
| `id`             | `string`  | equals, contains, startsWith, endsWith, in |
| `type`           | `string`  | equals, contains, startsWith, endsWith, in |
| `name`           | `string`  | equals, contains, startsWith, endsWith, in |
| `currency`       | `string`  | equals, contains, startsWith, endsWith, in |
| `primary_buy`    | `boolean` | equals                                     |
| `primary_sell`   | `boolean` | equals                                     |
| `allow_buy`      | `boolean` | equals                                     |
| `allow_sell`     | `boolean` | equals                                     |
| `allow_deposit`  | `boolean` | equals                                     |
| `allow_withdraw` | `boolean` | equals                                     |
| `instant_buy`    | `boolean` | equals                                     |
| `instant_sell`   | `boolean` | equals                                     |
| `created_at`     | `string`  | equals, contains, startsWith, endsWith, in |
| `updated_at`     | `string`  | equals, contains, startsWith, endsWith, in |
| `resource`       | `string`  | equals, contains, startsWith, endsWith, in |
| `resource_path`  | `string`  | equals, contains, startsWith, endsWith, in |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***

## Prices

Path: `coinbase.db.prices.search`

```ts theme={null}
const rows = await corsair.coinbase.db.prices.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field       | Type     | Operators                                  |
| ----------- | -------- | ------------------------------------------ |
| `entity_id` | `string` | equals, contains, startsWith, endsWith, in |
| `amount`    | `string` | equals, contains, startsWith, endsWith, in |
| `currency`  | `string` | equals, contains, startsWith, endsWith, in |
| `base`      | `string` | equals, contains, startsWith, endsWith, in |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***

## Transactions

Path: `coinbase.db.transactions.search`

```ts theme={null}
const rows = await corsair.coinbase.db.transactions.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field              | Type      | Operators                                  |
| ------------------ | --------- | ------------------------------------------ |
| `entity_id`        | `string`  | equals, contains, startsWith, endsWith, in |
| `id`               | `string`  | equals, contains, startsWith, endsWith, in |
| `type`             | `string`  | equals, contains, startsWith, endsWith, in |
| `status`           | `string`  | equals, contains, startsWith, endsWith, in |
| `description`      | `string`  | equals, contains, startsWith, endsWith, in |
| `created_at`       | `string`  | equals, contains, startsWith, endsWith, in |
| `updated_at`       | `string`  | equals, contains, startsWith, endsWith, in |
| `resource`         | `string`  | equals, contains, startsWith, endsWith, in |
| `resource_path`    | `string`  | equals, contains, startsWith, endsWith, in |
| `instant_exchange` | `boolean` | equals                                     |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***

## Users

Path: `coinbase.db.users.search`

```ts theme={null}
const rows = await corsair.coinbase.db.users.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});
```

### Searchable filters

| Field              | Type     | Operators                                  |
| ------------------ | -------- | ------------------------------------------ |
| `entity_id`        | `string` | equals, contains, startsWith, endsWith, in |
| `id`               | `string` | equals, contains, startsWith, endsWith, in |
| `name`             | `string` | equals, contains, startsWith, endsWith, in |
| `username`         | `string` | equals, contains, startsWith, endsWith, in |
| `profile_location` | `string` | equals, contains, startsWith, endsWith, in |
| `profile_bio`      | `string` | equals, contains, startsWith, endsWith, in |
| `profile_url`      | `string` | equals, contains, startsWith, endsWith, in |
| `avatar_url`       | `string` | equals, contains, startsWith, endsWith, in |
| `resource`         | `string` | equals, contains, startsWith, endsWith, in |
| `resource_path`    | `string` | equals, contains, startsWith, endsWith, in |
| `email`            | `string` | equals, contains, startsWith, endsWith, in |
| `time_zone`        | `string` | equals, contains, startsWith, endsWith, in |
| `native_currency`  | `string` | equals, contains, startsWith, endsWith, in |
| `bitcoin_unit`     | `string` | equals, contains, startsWith, endsWith, in |
| `created_at`       | `string` | equals, contains, startsWith, endsWith, in |

*Every `.search()` also accepts `limit` and `offset` for pagination. `.list()` is available on the same path without the `.search` suffix in code — see [database operations](/concepts/database).*

***
