Skip to main content
GET
/
api
/
movespecs
/
{movespec_id}
/
versions
List Movespec Versions
curl --request GET \
  --url https://api.kynasmith.dev/api/movespecs/{movespec_id}/versions \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "items": [
    {
      "content_hash": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "movespec_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "movespec_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "version_number": 123,
      "yaml_source": "<string>"
    }
  ],
  "limit": 123,
  "offset": 123,
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.kynasmith.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Backend-issued machine access token for project-scoped API access.

Path Parameters

movespec_id
string<uuid>
required

Query Parameters

limit
integer
default:50

Maximum items per page.

Required range: 1 <= x <= 200
offset
integer
default:0

Offset from the start of the result set.

Required range: x >= 0

Response

Successful Response

has_more
boolean
required

Whether more items exist beyond this page.

items
MoveSpecVersionResource · object[]
required
limit
integer
required

Page size used for this response.

offset
integer
required

Offset from the start of the full result set.

total
integer
required

Total number of matching items.