Skip to main content
GET
/
api
/
movespecs
List Movespecs
curl --request GET \
  --url https://api.kynasmith.dev/api/movespecs \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "items": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "movespec_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "updated_at": "2023-11-07T05:31:56Z",
      "archived_at": "2023-11-07T05:31:56Z",
      "current_released_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "description": "<string>",
      "star_count": 0
    }
  ],
  "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.

Query Parameters

project_id
string<uuid> | null
visibility
string | null
q
string | null

Full-text search across MoveSpec name and description.

sort
enum<string> | null

Sort order for results.

Available options:
recent,
stars,
name
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
MoveSpecResource · 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.