List style guides
Retrieves a paginated list of style guides with optional filtering.
curl --request GET \
--url https://api.avidoai.com/v0/style-guides \
--header 'x-api-key: <api-key>'
{
"data": [],
"pagination": {
"skip": 0,
"limit": 25,
"total": 0,
"totalPages": 0
}
}
Authorizations
Your unique Avido API key
Query Parameters
Number of items to skip
x >= 0
0
Number of items per page
1 <= x <= 100
25
Field to order by
"createdAt"
Order direction
asc
, desc
"desc"
Response
Paginated response containing style guides
A style guide for a specific application
The unique identifier of the style guide
"123e4567-e89b-12d3-a456-426614174000"
The date and time the style guide was created
"2024-01-01T00:00:00.000Z"
The date and time the style guide was last updated
"2024-01-01T00:00:00.000Z"
The JSON content of the style guide
{
"tone": "professional",
"guidelines": [
"Use clear and concise language",
"Maintain consistent terminology"
]
}
Application configuration and metadata
Unique identifier of the application
"123e4567-e89b-12d3-a456-426614174000"
Organization ID that owns this application
"org_123456"
Title of the application
1
"Customer Support Bot"
URL-friendly slug for the application
1
"customer-support-bot"
Description of the application
"AI assistant for customer support inquiries"
Context/instructions for the application
"You are a helpful customer support assistant..."
Type of the application. Valid values are CHATBOT or AGENT.
CHATBOT
, AGENT
"CHATBOT"
Environment of the application. Defaults to DEV.
DEV
, PROD
"DEV"
When the application was created
"2024-01-05T12:34:56.789Z"
When the application was last modified
"2024-01-05T12:34:56.789Z"
The ID of the associated quickstart if any
"123e4567-e89b-12d3-a456-426614174000"
Type of evaluation. Valid options: NATURALNESS, STYLE, RECALL, LLMQA.
NATURALNESS
, STYLE
, RECALL
, LLMQA
, BLACKLIST
"NATURALNESS"
Application configuration and metadata
Unique identifier of the application
"123e4567-e89b-12d3-a456-426614174000"
Organization ID that owns this application
"org_123456"
Title of the application
1
"Customer Support Bot"
URL-friendly slug for the application
1
"customer-support-bot"
Description of the application
"AI assistant for customer support inquiries"
Context/instructions for the application
"You are a helpful customer support assistant..."
Type of the application. Valid values are CHATBOT or AGENT.
CHATBOT
, AGENT
"CHATBOT"
Environment of the application. Defaults to DEV.
DEV
, PROD
"DEV"
When the application was created
"2024-01-05T12:34:56.789Z"
When the application was last modified
"2024-01-05T12:34:56.789Z"
Pagination metadata returned in a paginated response.
Number of items skipped.
x >= 0
0
Number of items per page.
x >= 1
25
Total number of items available.
x >= 0
100
Total number of pages available.
x >= 0
4
curl --request GET \
--url https://api.avidoai.com/v0/style-guides \
--header 'x-api-key: <api-key>'
{
"data": [],
"pagination": {
"skip": 0,
"limit": 25,
"total": 0,
"totalPages": 0
}
}