Skip to main content
GET
https://agent.usedari.com
/
skills
/
{org_id}
curl https://agent.usedari.com/skills/my-org \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "folder_id": "660e8400-e29b-41d4-a716-446655440000",
    "folder_name": "payments",
    "org_id": "my-org",
    "org_name": "My Organization",
    "name": "login_flow",
    "is_public": false,
    "config": null,
    "template_id": null,
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T10:30:00Z"
  }
]
Returns all skills for the specified organization.

Path Parameters

org_id
string
required
Organization ID

Query Parameters

include_public
boolean
default:"false"
Include public skills from other organizations

Headers

X-API-Key
string
required
Organization API key

Response Fields

Returns an array of skill objects:
id
string
UUID of the skill
folder_id
string
UUID of the folder containing this skill
folder_name
string
Name of the folder containing this skill
org_id
string
Organization ID
org_name
string
Organization name
name
string
Skill name
is_public
boolean
Whether the skill is publicly available
config
object
Skill configuration (if created from a template)
template_id
string
Template ID (if created from a template)
created_at
string
ISO 8601 creation timestamp
updated_at
string
ISO 8601 update timestamp
curl https://agent.usedari.com/skills/my-org \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "folder_id": "660e8400-e29b-41d4-a716-446655440000",
    "folder_name": "payments",
    "org_id": "my-org",
    "org_name": "My Organization",
    "name": "login_flow",
    "is_public": false,
    "config": null,
    "template_id": null,
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-01-15T10:30:00Z"
  }
]