kaiten_get_all_space_activity
Fetch all activity for a space in one paginated request. Filter by actions, author, or date, and reduce payload with field selection or compact mode to trace card movement history efficiently.
Instructions
Fetch ALL activity for a space with automatic pagination. Use actions filter to get specific event types. For complete card flow history: actions='card_add,card_move,card_archive,card_join_board,card_revive'. Safety limit: 50 pages (5000 events). This is the EFFICIENT way to get location history for all cards in a space — one paginated endpoint instead of hundreds of individual card requests.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | No | Comma-separated field names to keep. Strips everything else. | |
| actions | No | Comma-separated action types (card_add, card_move, card_archive, card_join_board, card_revive, etc.) | |
| compact | No | Strip heavy fields (avatars, user details). Default true for bulk. | |
| space_id | Yes | Space ID | |
| author_id | No | Filter by author user ID | |
| max_pages | No | Safety limit on pages to fetch (default 50, max 5000 events) | |
| page_size | No | Events per page (default 100, max 100) | |
| created_after | No | Filter activities after this datetime (ISO 8601) | |
| created_before | No | Filter activities before this datetime (ISO 8601) |