corsair.cloudflare.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
New to Corsair? See database operations, data synchronization, and multi-tenancy.
Dns Records
Path:cloudflare.db.dnsRecords.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
zone_id | string | equals, contains, startsWith, endsWith, in |
zone_name | string | equals, contains, startsWith, endsWith, in |
type | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
content | string | equals, contains, startsWith, endsWith, in |
proxiable | boolean | equals |
proxied | boolean | equals |
ttl | number | equals, gt, gte, lt, lte, in |
priority | number | equals, gt, gte, lt, lte, in |
locked | boolean | equals |
created_on | date | equals, before, after, between |
modified_on | date | equals, before, after, between |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Rulesets
Path:cloudflare.db.rulesets.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
zone_id | string | equals, contains, startsWith, endsWith, in |
name | string | equals, contains, startsWith, endsWith, in |
description | string | equals, contains, startsWith, endsWith, in |
kind | string | equals, contains, startsWith, endsWith, in |
version | string | equals, contains, startsWith, endsWith, in |
last_updated | date | equals, before, after, between |
phase | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Worker Routes
Path:cloudflare.db.workerRoutes.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
zone_id | string | equals, contains, startsWith, endsWith, in |
pattern | string | equals, contains, startsWith, endsWith, in |
script | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Worker Scripts
Path:cloudflare.db.workerScripts.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
account_id | string | equals, contains, startsWith, endsWith, in |
created_on | date | equals, before, after, between |
modified_on | date | equals, before, after, between |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Zones
Path:cloudflare.db.zones.search
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 |
status | string | equals, contains, startsWith, endsWith, in |
paused | boolean | equals |
type | string | equals, contains, startsWith, endsWith, in |
created_on | date | equals, before, after, between |
modified_on | date | equals, before, after, between |
activated_on | date | equals, before, after, between |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.