Retrieve a space by its ID, including its dedicated vector store and any additional attached vector stores.
GEThttps://api.aitronos.com/v1/spaces/{space_id}
Retrieve the details of a space. Requires view access to the space.
space_id string required
The unique identifier of the space (e.g., space_abc123...).
A Space object containing the space configuration, its dedicated vector_store_id, and additional_vector_store_ids for any externally attached vector stores.
Key fields:
vector_store_id— The space's auto-created dedicated vector store (used for embedding thread messages as shared memory).additional_vector_store_ids— Array of external vector store IDs attached to this space for expanded knowledge access.
cURL
- Bash
- Python
- JavaScript
curl "https://api.aitronos.com/v1/spaces/space_abc123" \
-H "X-API-Key: $FREDDY_API_KEY"