Skip to main content
POST
/
organization-skills
/
list
List organization skills
curl --request POST \
  --url https://app.usechar.ai/api/organization-skills/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "limit": 50,
  "offset": 4503599627370495
}
'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "metadata_tokens": 0,
    "created_at": "2023-11-07T05:31:56Z",
    "domains": "<string>",
    "source_type": "manual",
    "source_repo": "<string>",
    "source_group_id": "<string>"
  }
]

Documentation Index

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

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

Authorizations

Authorization
string
header
required

WorkOS JWT token. Obtain via WorkOS AuthKit authentication flow. The token must include organization_id claim for organization-scoped endpoints.

Body

application/json

Input for listing organization skills

limit
integer

Max skills to return (default: 100)

Required range: 1 <= x <= 100
offset
integer

Skip N skills for pagination

Required range: 0 <= x <= 9007199254740991

Response

OK

id
string<uuid>
required
name
string
required
description
string
required
metadata_tokens
integer
required
Required range: -9007199254740991 <= x <= 9007199254740991
created_at
string<date-time>
required
domains
string
required
source_type
enum<string> | null
required
Available options:
manual,
repo
source_repo
string | null
required
source_group_id
string | null
required