For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Welcome
  • API Reference
      • GETListar Asistentes
      • POSTCrear Asistente
      • GETObtener Asistente
      • DELEliminar Asistente
      • PATCHActualizar Asistente
Logo
API ReferenceAssistants

Obtener Asistente

GET
https://nebrijaai.com/api/v1/assistants/:id
GET
/api/v1/assistants/:id
$curl https://nebrijaai.com/api/v1/assistants/id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
3 "name": "Asistente de Ventas",
4 "config": {
5 "language": "es-ES",
6 "voice": "female",
7 "wakeWord": "Hola Nebrija",
8 "responseTimeout": 5000,
9 "features": {
10 "speechRecognition": true,
11 "naturalLanguageProcessing": true,
12 "multiTurnConversations": true
13 }
14 },
15 "isLocked": true,
16 "createdAt": "2024-01-15T09:30:00Z",
17 "updatedAt": "2024-04-10T11:45:00Z"
18}

Devuelve los detalles de un asistente específico.

Was this page helpful?
Previous

Eliminar Asistente

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

idstringRequiredformat: "uuid"

Response

Detalles del asistente.
idstringformat: "uuid"
namestring
configobject
isLockedboolean
createdAtdatetime
updatedAtdatetime