Attio Performance Tuning Overview Attio's REST API returns JSON over HTTPS. Performance optimization focuses on reducing request count (batching, caching), maximizing throughput (connection reuse, pagination), and minimizing latency (selective field fetching, parallel queries). Key Performance Facts | Factor | Detail | |--------|--------| | Rate limit | Sliding 10-second window, shared across all tokens | | Pagination default | (max per page) | | API base | | | Auth overhead | Bearer token in header (minimal) | | Response format | JSON only (no binary/protobuf) | Instructions Strategy 1: Resp…