GET
/
community-scripts
curl --request GET \
  --url https://api.altostrat.io/community-scripts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "size": 123,
      "readme_url": "<string>",
      "github_url": "<string>",
      "raw_url": "<string>",
      "repository": {
        "name": "<string>",
        "url": "<string>",
        "stars": 123,
        "created_at": "2023-11-07T05:31:56Z"
      },
      "user": {
        "name": "<string>",
        "url": "<string>",
        "avatar": "<string>",
        "followers": 123,
        "created_at": "2023-11-07T05:31:56Z"
      },
      "content": "<string>",
      "sha": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of community scripts

The response is of type object.