Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request GET \
--url https://v1.api.altostrat.io/search \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "doc_1",
"name": "Project Alpha Documentation",
"type": "document",
"description": "Comprehensive documentation for the Alpha project including API specifications and user guides.",
"org_id": "org_MyoAolMD2GACSFi8",
"workspace_id": "ws_sz47boIRd2XfDRk3G0",
"metadata": {
"category": "technical",
"resource_id\"": "res_doc_001"
},
"created_at": "2025-11-04T08:36:48.000000Z",
"updated_at": "2025-11-07T08:36:48.000000Z",
"relevance_percentage": 95,
"scout_score": 123456789
}
],
"links": {
"first": "https://v1.api.altostrat.io/search?page=1",
"last": "https://v1.api.altostrat.io/search?page=5",
"prev": null,
"next": "https://v1.api.altostrat.io/search?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 5,
"path": "https://v1.api.altostrat.io/search",
"per_page": 20,
"to": 20,
"total": 95
}
}This endpoint allows for a powerful, full-text search across all indexed entities within a user’s tenancy scope. By default, it searches all resources within the user’s organization. You can narrow the scope to a specific workspace or apply fine-grained filters based on entity type and creation date to pinpoint the exact information you need.
curl --request GET \
--url https://v1.api.altostrat.io/search \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "doc_1",
"name": "Project Alpha Documentation",
"type": "document",
"description": "Comprehensive documentation for the Alpha project including API specifications and user guides.",
"org_id": "org_MyoAolMD2GACSFi8",
"workspace_id": "ws_sz47boIRd2XfDRk3G0",
"metadata": {
"category": "technical",
"resource_id\"": "res_doc_001"
},
"created_at": "2025-11-04T08:36:48.000000Z",
"updated_at": "2025-11-07T08:36:48.000000Z",
"relevance_percentage": 95,
"scout_score": 123456789
}
],
"links": {
"first": "https://v1.api.altostrat.io/search?page=1",
"last": "https://v1.api.altostrat.io/search?page=5",
"prev": null,
"next": "https://v1.api.altostrat.io/search?page=2"
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 5,
"path": "https://v1.api.altostrat.io/search",
"per_page": 20,
"to": 20,
"total": 95
}
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Enter your bearer token in the format: Bearer {token}
The primary search query string. The search engine performs a fuzzy search across entity names, descriptions, and key metadata fields.
1 - 255The unique identifier for a Workspace (ws_...). Specifying this ID scopes the search exclusively to entities within that workspace, overriding the broader organization-level scope. Cannot be used with org_id.
The unique identifier for an Organization (org_...). Allows an administrator to override the default search scope from their own organization to another. Cannot be used with workspace_id.
An array of entity types to filter the search results. Only entities matching one of the provided types will be returned.
The start date for a date-range filter on the entity's creation timestamp. Formatted as YYYY-MM-DD.
The end date for a date-range filter on the entity's creation timestamp. Formatted as YYYY-MM-DD.
The page number of the result set to retrieve.
x >= 1Was this page helpful?