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 POST \
--url https://v1.api.altostrat.io/scripts/community-scripts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"github_url": "https://raw.githubusercontent.com/user/repo/main/path/to/script.rsc",
"readme_url": "https://raw.githubusercontent.com/user/repo/main/path/to/README.md"
}
'{
"type": "invalid_request_error",
"code": "parameter_missing",
"message": "The 'name' parameter is required for this request.",
"doc_url": "https://docs.altostrat.io/errors/parameter_missing"
}Submits a new script to the community repository by providing a URL to a raw .rsc file on GitHub. The system will then fetch the script content and associated repository metadata.
curl --request POST \
--url https://v1.api.altostrat.io/scripts/community-scripts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"github_url": "https://raw.githubusercontent.com/user/repo/main/path/to/script.rsc",
"readme_url": "https://raw.githubusercontent.com/user/repo/main/path/to/README.md"
}
'{
"type": "invalid_request_error",
"code": "parameter_missing",
"message": "The 'name' parameter is required for this request.",
"doc_url": "https://docs.altostrat.io/errors/parameter_missing"
}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.
Altostrat SDX API uses JWT Bearer tokens for authentication. Obtain a token via the Authentication API and include it in the Authorization header as 'Bearer {token}'.
The direct raw URL to the .rsc file on GitHub.
"https://raw.githubusercontent.com/user/repo/main/path/to/script.rsc"
An optional direct raw URL to a corresponding markdown README file.
"https://raw.githubusercontent.com/user/repo/main/path/to/README.md"
The script was submitted successfully and is being processed.
Was this page helpful?