Skip to main content
GET
https://api.usenotra.com
/
v1
/
skills
/
{name}
Get a single skill
curl --request GET \
  --url https://api.usenotra.com/v1/skills/{name} \
  --header 'Authorization: Bearer <token>'
{
  "skill": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "isSystem": true,
    "updatedAt": "<string>",
    "content": "<string>",
    "createdAt": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.usenotra.com/llms.txt

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

Authorizations

Authorization
string
header
required

Send your API key in the Authorization header as Bearer API_KEY.

Path Parameters

name
string
required

Skill name. Lowercase letters, digits, and hyphens only.

Required string length: 1 - 64
Pattern: ^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]$
Example:

"humanizer"

Response

Skill fetched successfully

skill
object
required
Last modified on May 20, 2026