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 Herramientas
      • POSTCrear Herramienta
      • GETObtener Herramienta
      • DELEliminar Herramienta
      • PATCHActualizar Herramienta
Logo
API ReferenceTools

Listar Herramientas

GET
https://nebrijaai.com/api/v1/tools
GET
/api/v1/tools
$curl https://nebrijaai.com/api/v1/tools \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
200Retrieved
1[
2 {
3 "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
4 "name": "User Authentication Service",
5 "type": "httpRequest",
6 "description": "Herramienta para realizar autenticación de usuarios mediante API REST.",
7 "config": {
8 "endpoint": "https://auth.nebrijaai.com/api/login",
9 "method": "POST",
10 "headers": {
11 "Content-Type": "application/json",
12 "Authorization": "Bearer <token>"
13 },
14 "timeout": 5000
15 },
16 "payloadSchema": {
17 "type": "object",
18 "properties": {
19 "username": {
20 "type": "string"
21 },
22 "password": {
23 "type": "string"
24 }
25 },
26 "required": [
27 "username",
28 "password"
29 ]
30 },
31 "messages": {
32 "success": "Autenticación exitosa.",
33 "error": "Credenciales inválidas."
34 },
35 "isLocked": false,
36 "createdAt": "2024-01-15T09:30:00Z",
37 "updatedAt": "2024-04-10T11:45:00Z"
38 }
39]

Devuelve todas las herramientas de la organización.

Was this page helpful?
Previous

Crear Herramienta

Next
Built with

Authentication

AuthorizationBearer

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

Response

Lista de herramientas.
idstringformat: "uuid"
namestring
typeenum
Allowed values:
descriptionstring
configobject
payloadSchemaobject
messagesobject
isLockedboolean
createdAtdatetime
updatedAtdatetime