---
title: "Search objects across all spaces"
method: POST
path: "/v1/search"
tags: ["Search"]
---

# Search objects across all spaces

`POST /v1/search`

Executes a global search over all spaces accessible to the authenticated user. The request body must specify the `query` text (currently matching only name and snippet of an object), optional filters on types (e.g., "page", "task"), and sort directives (default: descending by last modified date). Pagination is controlled via `offset` and `limit` query parameters to facilitate lazy loading in client UIs. The response returns a unified list of matched objects with their metadata and properties.

## Query parameters

- `offset` integer
- `limit` integer

## Headers

- `Anytype-Version` string, required

## Request body

- SearchRequest
  - `filters` FilterExpression — Expression filter with nested AND/OR conditions
    - `conditions` FilterItem[] — List of format-specific filter conditions
      - union
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `property_key` string — The property key to filter on
          - `text` string — The text value to filter by
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `number` number — The number value to filter by
          - `property_key` string — The property key to filter on
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `property_key` string — The property key to filter on
          - `select` string — Tag Id - for eq/ne conditions (single selection)
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `multi_select` string[] — The tag IDs to filter by
          - `property_key` string — The property key to filter on
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `date` string — The date value to filter by. Accepts dates in RFC3339 format (2006-01-02T15:04:05Z) or date-only format (2006-01-02)
          - `property_key` string — The property key to filter on
        - object
          - `checkbox` boolean — The checkbox value to filter by
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `property_key` string — The property key to filter on
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `files` string[] — File IDs for contains condition
          - `property_key` string — The property key to filter on
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `property_key` string — The property key to filter on
          - `url` string — The Url value to filter by
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `email` string — The email value to filter by
          - `property_key` string — The property key to filter on
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `phone` string — The phone value to filter by
          - `property_key` string — The property key to filter on
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `objects` string[] — Object Ids to filter by
          - `property_key` string — The property key to filter on
        - object
          - `condition` 'equal' | 'not_equal' | 'greater' | 'less' | 'greater_or_equal' | 'less_or _equal' | 'like' | 'not_like' | 'in' | 'not_in' | 'empty' | 'not_empty' | 'all_in' | 'not_all_in' | 'exact_in' | 'not_exact_in' | 'exists' — The filter condition
          - `property_key` string — The property key to filter on
    - `filters` FilterExpression[] — Nested filter expressions for complex logic
    - `operator` 'and' | 'or' — Logical operator for combining filters (and, or)
  - `query` string — The text to search within object names and content; use types field for type filtering
  - `sort` SortOptions — The sorting options for the search results
    - `direction` 'asc' | 'desc' — The direction to sort the search results by
    - `property_key` 'created_date' | 'last_modified_date' | 'last_opened_date' | 'name' — The key of the property to sort the search results by
  - `types` string[] — The types of objects to include in results (e.g., "page", "task", "bookmark"); see ListTypes endpoint for valid values

## Response `200`

The list of objects matching the search criteria

- PaginatedResponseObject
  - `data` Object[] — The list of items in the current result set
    - `archived` boolean — Whether the object is archived
    - `icon` union — The icon of the object, or null if the object has no icon
      - object
        - `emoji` string — The emoji of the icon
        - `format` 'emoji' | 'file' | 'icon' — The format of the icon
      - object
        - `file` string — The file of the icon
        - `format` 'emoji' | 'file' | 'icon' — The format of the icon
      - object
        - `color` 'grey' | 'yellow' | 'orange' | 'red' | 'pink' | 'purple' | 'blue' | 'ice' | 'teal' | 'lime' — The color of the icon
        - `format` 'emoji' | 'file' | 'icon' — The format of the icon
        - `name` 'accessibility' | 'add-circle' | 'airplane' | 'alarm' | 'albums' | 'alert-circle' | 'american-football' | 'analytics' | 'aperture' | 'apps' | 'archive' | 'arrow-back-circle' | 'arrow-down-circle' | 'arrow-forward-circle' | 'arrow-redo-circle' | 'arrow-redo' | 'arrow-undo-circle' | 'arrow-undo' | 'arrow-up-circle' | 'at-circle' | 'attach' | 'backspace' | 'bag-add' | 'bag-check' | 'bag-handle' | 'bag-remove' | 'bag' | 'balloon' | 'ban' | 'bandage' | 'bar-chart' | 'barbell' | 'barcode' | 'baseball' | 'basket' | 'basketball' | 'battery-charging' | 'battery-dead' | 'battery-full' | 'battery-half' | 'beaker' | 'bed' | 'beer' | 'bicycle' | 'binoculars' | 'bluetooth' | 'boat' | 'body' | 'bonfire' | 'book' | 'bookmark' | 'bookmarks' | 'bowling-ball' | 'briefcase' | 'browsers' | 'brush' | 'bug' | 'build' | 'bulb' | 'bus' | 'business' | 'cafe' | 'calculator' | 'calendar-clear' | 'calendar-number' | 'calendar' | 'call' | 'camera-reverse' | 'camera' | 'car-sport' | 'car' | 'card' | 'caret-back-circle' | 'caret-back' | 'caret-down-circle' | 'caret-down' | 'caret-forward-circle' | 'caret-forward' | 'caret-up-circle' | 'caret-up' | 'cart' | 'cash' | 'cellular' | 'chatbox-ellipses' | 'chatbox' | 'chatbubble-ellipses' | 'chatbubble' | 'chatbubbles' | 'checkbox' | 'checkmark-circle' | 'checkmark-done-circle' | 'chevron-back-circle' | 'chevron-down-circle' | 'chevron-forward-circle' | 'chevron-up-circle' | 'clipboard' | 'close-circle' | 'cloud-circle' | 'cloud-done' | 'cloud-download' | 'cloud-offline' | 'cloud-upload' | 'cloud' | 'cloudy-night' | 'cloudy' | 'code-slash' | 'code' | 'cog' | 'color-fill' | 'color-filter' | 'color-palette' | 'color-wand' | 'compass' | 'construct' | 'contact' | 'contract' | 'contrast' | 'copy' | 'create' | 'crop' | 'cube' | 'cut' | 'desktop' | 'diamond' | 'dice' | 'disc' | 'document-attach' | 'document-lock' | 'document-text' | 'document' | 'documents' | 'download' | 'duplicate' | 'ear' | 'earth' | 'easel' | 'egg' | 'ellipse' | 'ellipsis-horizontal-circle' | 'ellipsis-vertical-circle' | 'enter' | 'exit' | 'expand' | 'extension-puzzle' | 'eye-off' | 'eye' | 'eyedrop' | 'fast-food' | 'female' | 'file-tray-full' | 'file-tray-stacked' | 'file-tray' | 'film' | 'filter-circle' | 'finger-print' | 'fish' | 'fitness' | 'flag' | 'flame' | 'flash-off' | 'flash' | 'flashlight' | 'flask' | 'flower' | 'folder-open' | 'folder' | 'football' | 'footsteps' | 'funnel' | 'game-controller' | 'gift' | 'git-branch' | 'git-commit' | 'git-compare' | 'git-merge' | 'git-network' | 'git-pull-request' | 'glasses' | 'globe' | 'golf' | 'grid' | 'hammer' | 'hand-left' | 'hand-right' | 'happy' | 'hardware-chip' | 'headset' | 'heart-circle' | 'heart-dislike-circle' | 'heart-dislike' | 'heart-half' | 'heart' | 'help-buoy' | 'help-circle' | 'home' | 'hourglass' | 'ice-cream' | 'id-card' | 'image' | 'images' | 'infinite' | 'information-circle' | 'invert-mode' | 'journal' | 'key' | 'keypad' | 'language' | 'laptop' | 'layers' | 'leaf' | 'library' | 'link' | 'list-circle' | 'list' | 'locate' | 'location' | 'lock-closed' | 'lock-open' | 'log-in' | 'log-out' | 'logo-alipay' | 'logo-amazon' | 'logo-amplify' | 'logo-android' | 'magnet' | 'mail-open' | 'mail-unread' | 'mail' | 'male-female' | 'male' | 'man' | 'map' | 'medal' | 'medical' | 'medkit' | 'megaphone' | 'menu' | 'mic-circle' | 'mic-off-circle' | 'mic-off' | 'mic' | 'moon' | 'move' | 'musical-note' | 'musical-notes' | 'navigate-circle' | 'navigate' | 'newspaper' | 'notifications-circle' | 'notifications-off-circle' | 'notifications-off' | 'notifications' | 'nuclear' | 'nutrition' | 'options' | 'paper-plane' | 'partly-sunny' | 'pause-circle' | 'pause' | 'paw' | 'pencil' | 'people-circle' | 'people' | 'person-add' | 'person-circle' | 'person-remove' | 'person' | 'phone-landscape' | 'phone-portrait' | 'pie-chart' | 'pin' | 'pint' | 'pizza' | 'planet' | 'play-back-circle' | 'play-back' | 'play-circle' | 'play-forward-circle' | 'play-forward' | 'play-skip-back-circle' | 'play-skip-back' | 'play-skip-forward-circle' | 'play-skip-forward' | 'play' | 'podium' | 'power' | 'pricetag' | 'pricetags' | 'print' | 'prism' | 'pulse' | 'push' | 'qr-code' | 'radio-button-off' | 'radio-button-on' | 'radio' | 'rainy' | 'reader' | 'receipt' | 'recording' | 'refresh-circle' | 'refresh' | 'reload-circle' | 'reload' | 'remove-circle' | 'repeat' | 'resize' | 'restaurant' | 'ribbon' | 'rocket' | 'rose' | 'sad' | 'save' | 'scale' | 'scan-circle' | 'scan' | 'school' | 'search-circle' | 'search' | 'send' | 'server' | 'settings' | 'shapes' | 'share-social' | 'share' | 'shield-checkmark' | 'shield-half' | 'shield' | 'shirt' | 'shuffle' | 'skull' | 'snow' | 'sparkles' | 'speedometer' | 'square' | 'star-half' | 'star' | 'stats-chart' | 'stop-circle' | 'stop' | 'stopwatch' | 'storefront' | 'subway' | 'sunny' | 'swap-horizontal' | 'swap-vertical' | 'sync-circle' | 'sync' | 't.txt' | 'tablet-landscape' | 'tablet-portrait' | 'telescope' | 'tennisball' | 'terminal' | 'text' | 'thermometer' | 'thumbs-down' | 'thumbs-up' | 'thunderstorm' | 'ticket' | 'time' | 'timer' | 'today' | 'toggle' | 'trail-sign' | 'train' | 'transgender' | 'trash-bin' | 'trash' | 'trending-down' | 'trending-up' | 'triangle' | 'trophy' | 'tv' | 'umbrella' | 'unlink' | 'videocam-off' | 'videocam' | 'volume-high' | 'volume-low' | 'volume-medium' | 'volume-mute' | 'volume-off' | 'walk' | 'wallet' | 'warning' | 'watch' | 'water' | 'wifi' | 'wine' | 'woman' — The name of the icon
    - `id` string — The id of the object
    - `layout` string — The layout of the object
    - `name` string — The name of the object
    - `object` string — The data model of the object
    - `properties` PropertyWithValue[] — The properties of the object
      - union
        - object
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
          - `text` string — The text value of the property
        - object
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `number` number — The number value of the property
          - `object` string — The data model of the object
        - object
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
          - `select` Tag — The selected tag value of the property
            - `color` 'grey' | 'yellow' | 'orange' | 'red' | 'pink' | 'purple' | 'blue' | 'ice' | 'teal' | 'lime' — The color of the icon
            - `id` string — The id of the tag
            - `key` string — The key of the tag
            - `name` string — The name of the tag
            - `object` string — The data model of the object
        - object
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `multi_select` Tag[] — The selected tag values of the property
            - `color` 'grey' | 'yellow' | 'orange' | 'red' | 'pink' | 'purple' | 'blue' | 'ice' | 'teal' | 'lime' — The color of the icon
            - `id` string — The id of the tag
            - `key` string — The key of the tag
            - `name` string — The name of the tag
            - `object` string — The data model of the object
          - `name` string — The name of the property
          - `object` string — The data model of the object
        - object
          - `date` string — The date value of the property. Returns dates in RFC3339 format (2006-01-02T15:04:05Z)
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
        - object
          - `files` string[] — The file values of the property
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
        - object
          - `checkbox` boolean — The checkbox value of the property
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
        - object
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
          - `url` string — The URL value of the property
        - object
          - `email` string — The email value of the property
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
        - object
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
          - `phone` string — The phone value of the property
        - object
          - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
          - `id` string — The id of the property
          - `key` string — The key of the property
          - `name` string — The name of the property
          - `object` string — The data model of the object
          - `objects` string[] — The object values of the property
    - `snippet` string — The snippet of the object, especially important for notes as they don't have a name
    - `space_id` string — The id of the space the object is in
    - `type` Type, nullable — The type of the object, or null if the type has been deleted.
      - `archived` boolean — Whether the type is archived
      - `icon` union — The icon of the object, or null if the object has no icon
        - object
          - `emoji` string — The emoji of the icon
          - `format` 'emoji' | 'file' | 'icon' — The format of the icon
        - object
          - `file` string — The file of the icon
          - `format` 'emoji' | 'file' | 'icon' — The format of the icon
        - object
          - `color` 'grey' | 'yellow' | 'orange' | 'red' | 'pink' | 'purple' | 'blue' | 'ice' | 'teal' | 'lime' — The color of the icon
          - `format` 'emoji' | 'file' | 'icon' — The format of the icon
          - `name` 'accessibility' | 'add-circle' | 'airplane' | 'alarm' | 'albums' | 'alert-circle' | 'american-football' | 'analytics' | 'aperture' | 'apps' | 'archive' | 'arrow-back-circle' | 'arrow-down-circle' | 'arrow-forward-circle' | 'arrow-redo-circle' | 'arrow-redo' | 'arrow-undo-circle' | 'arrow-undo' | 'arrow-up-circle' | 'at-circle' | 'attach' | 'backspace' | 'bag-add' | 'bag-check' | 'bag-handle' | 'bag-remove' | 'bag' | 'balloon' | 'ban' | 'bandage' | 'bar-chart' | 'barbell' | 'barcode' | 'baseball' | 'basket' | 'basketball' | 'battery-charging' | 'battery-dead' | 'battery-full' | 'battery-half' | 'beaker' | 'bed' | 'beer' | 'bicycle' | 'binoculars' | 'bluetooth' | 'boat' | 'body' | 'bonfire' | 'book' | 'bookmark' | 'bookmarks' | 'bowling-ball' | 'briefcase' | 'browsers' | 'brush' | 'bug' | 'build' | 'bulb' | 'bus' | 'business' | 'cafe' | 'calculator' | 'calendar-clear' | 'calendar-number' | 'calendar' | 'call' | 'camera-reverse' | 'camera' | 'car-sport' | 'car' | 'card' | 'caret-back-circle' | 'caret-back' | 'caret-down-circle' | 'caret-down' | 'caret-forward-circle' | 'caret-forward' | 'caret-up-circle' | 'caret-up' | 'cart' | 'cash' | 'cellular' | 'chatbox-ellipses' | 'chatbox' | 'chatbubble-ellipses' | 'chatbubble' | 'chatbubbles' | 'checkbox' | 'checkmark-circle' | 'checkmark-done-circle' | 'chevron-back-circle' | 'chevron-down-circle' | 'chevron-forward-circle' | 'chevron-up-circle' | 'clipboard' | 'close-circle' | 'cloud-circle' | 'cloud-done' | 'cloud-download' | 'cloud-offline' | 'cloud-upload' | 'cloud' | 'cloudy-night' | 'cloudy' | 'code-slash' | 'code' | 'cog' | 'color-fill' | 'color-filter' | 'color-palette' | 'color-wand' | 'compass' | 'construct' | 'contact' | 'contract' | 'contrast' | 'copy' | 'create' | 'crop' | 'cube' | 'cut' | 'desktop' | 'diamond' | 'dice' | 'disc' | 'document-attach' | 'document-lock' | 'document-text' | 'document' | 'documents' | 'download' | 'duplicate' | 'ear' | 'earth' | 'easel' | 'egg' | 'ellipse' | 'ellipsis-horizontal-circle' | 'ellipsis-vertical-circle' | 'enter' | 'exit' | 'expand' | 'extension-puzzle' | 'eye-off' | 'eye' | 'eyedrop' | 'fast-food' | 'female' | 'file-tray-full' | 'file-tray-stacked' | 'file-tray' | 'film' | 'filter-circle' | 'finger-print' | 'fish' | 'fitness' | 'flag' | 'flame' | 'flash-off' | 'flash' | 'flashlight' | 'flask' | 'flower' | 'folder-open' | 'folder' | 'football' | 'footsteps' | 'funnel' | 'game-controller' | 'gift' | 'git-branch' | 'git-commit' | 'git-compare' | 'git-merge' | 'git-network' | 'git-pull-request' | 'glasses' | 'globe' | 'golf' | 'grid' | 'hammer' | 'hand-left' | 'hand-right' | 'happy' | 'hardware-chip' | 'headset' | 'heart-circle' | 'heart-dislike-circle' | 'heart-dislike' | 'heart-half' | 'heart' | 'help-buoy' | 'help-circle' | 'home' | 'hourglass' | 'ice-cream' | 'id-card' | 'image' | 'images' | 'infinite' | 'information-circle' | 'invert-mode' | 'journal' | 'key' | 'keypad' | 'language' | 'laptop' | 'layers' | 'leaf' | 'library' | 'link' | 'list-circle' | 'list' | 'locate' | 'location' | 'lock-closed' | 'lock-open' | 'log-in' | 'log-out' | 'logo-alipay' | 'logo-amazon' | 'logo-amplify' | 'logo-android' | 'magnet' | 'mail-open' | 'mail-unread' | 'mail' | 'male-female' | 'male' | 'man' | 'map' | 'medal' | 'medical' | 'medkit' | 'megaphone' | 'menu' | 'mic-circle' | 'mic-off-circle' | 'mic-off' | 'mic' | 'moon' | 'move' | 'musical-note' | 'musical-notes' | 'navigate-circle' | 'navigate' | 'newspaper' | 'notifications-circle' | 'notifications-off-circle' | 'notifications-off' | 'notifications' | 'nuclear' | 'nutrition' | 'options' | 'paper-plane' | 'partly-sunny' | 'pause-circle' | 'pause' | 'paw' | 'pencil' | 'people-circle' | 'people' | 'person-add' | 'person-circle' | 'person-remove' | 'person' | 'phone-landscape' | 'phone-portrait' | 'pie-chart' | 'pin' | 'pint' | 'pizza' | 'planet' | 'play-back-circle' | 'play-back' | 'play-circle' | 'play-forward-circle' | 'play-forward' | 'play-skip-back-circle' | 'play-skip-back' | 'play-skip-forward-circle' | 'play-skip-forward' | 'play' | 'podium' | 'power' | 'pricetag' | 'pricetags' | 'print' | 'prism' | 'pulse' | 'push' | 'qr-code' | 'radio-button-off' | 'radio-button-on' | 'radio' | 'rainy' | 'reader' | 'receipt' | 'recording' | 'refresh-circle' | 'refresh' | 'reload-circle' | 'reload' | 'remove-circle' | 'repeat' | 'resize' | 'restaurant' | 'ribbon' | 'rocket' | 'rose' | 'sad' | 'save' | 'scale' | 'scan-circle' | 'scan' | 'school' | 'search-circle' | 'search' | 'send' | 'server' | 'settings' | 'shapes' | 'share-social' | 'share' | 'shield-checkmark' | 'shield-half' | 'shield' | 'shirt' | 'shuffle' | 'skull' | 'snow' | 'sparkles' | 'speedometer' | 'square' | 'star-half' | 'star' | 'stats-chart' | 'stop-circle' | 'stop' | 'stopwatch' | 'storefront' | 'subway' | 'sunny' | 'swap-horizontal' | 'swap-vertical' | 'sync-circle' | 'sync' | 't.txt' | 'tablet-landscape' | 'tablet-portrait' | 'telescope' | 'tennisball' | 'terminal' | 'text' | 'thermometer' | 'thumbs-down' | 'thumbs-up' | 'thunderstorm' | 'ticket' | 'time' | 'timer' | 'today' | 'toggle' | 'trail-sign' | 'train' | 'transgender' | 'trash-bin' | 'trash' | 'trending-down' | 'trending-up' | 'triangle' | 'trophy' | 'tv' | 'umbrella' | 'unlink' | 'videocam-off' | 'videocam' | 'volume-high' | 'volume-low' | 'volume-medium' | 'volume-mute' | 'volume-off' | 'walk' | 'wallet' | 'warning' | 'watch' | 'water' | 'wifi' | 'wine' | 'woman' — The name of the icon
      - `id` string — The id of the type (which is unique across spaces)
      - `key` string — The key of the type (can be the same across spaces for known types)
      - `layout` 'basic' | 'profile' | 'action' | 'note' | 'bookmark' | 'set' | 'collection' | 'participant' — The layout of the object
      - `name` string — The name of the type
      - `object` string — The data model of the object
      - `plural_name` string — The plural name of the type
      - `properties` Property[] — The properties linked to the type
        - `format` 'text' | 'number' | 'select' | 'multi_select' | 'date' | 'files' | 'checkbox' | 'url' | 'email' | 'phone' | 'objects' — The format of the property used for filtering
        - `id` string — The id of the property
        - `key` string — The key of the property
        - `name` string — The name of the property
        - `object` string — The data model of the object
  - `pagination` PaginationMeta — The pagination metadata for the response
    - `has_more` boolean — Indicates if there are more items available beyond the current result set
    - `limit` integer — The maximum number of items returned in the result set
    - `offset` integer — The number of items skipped before starting to collect the result set
    - `total` integer — The total number of items available for the endpoint

## Other responses

- `401` — Unauthorized
- `500` — Internal server error

---

[API](https://skmtc.net/anyproto/apis/anytype-api.md) · [All operations](https://skmtc.net/anyproto/apis/anytype-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/anyproto/anytype-api/versions/6f8ebf2b819a/schema)
