Skip to main content
GET
/
community-scripts
/
{communityScriptId}
.md
Get Raw README Content
curl --request GET \
  --url https://api.altostrat.io/community-scripts/{communityScriptId}.md \
  --header 'Authorization: Bearer <token>'
"# My Awesome Script\nThis script does amazing things."

Authorizations

Authorization
string
header
required

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}'.

Path Parameters

communityScriptId
string<ulid>
required

The unique identifier for the community script.

Example:

"01H8XGJWBWBAQ1Z3G1B6X2Q8P5"

Response

The raw README markdown content.

The response is of type string.

Example:

"# My Awesome Script\nThis script does amazing things."