n8n-nodes-cala 0.4.1 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +60 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -75,17 +75,74 @@ Ask a natural language question and get back a researched answer with sources.
|
|
|
75
75
|
|
|
76
76
|
Filter entities by attributes using dot-notation syntax.
|
|
77
77
|
|
|
78
|
-
**Input:** `"startups.location=Spain.funding>10M
|
|
78
|
+
**Input:** `"startups.location=Spain.funding>10M"`
|
|
79
|
+
|
|
80
|
+
**Output:**
|
|
81
|
+
```json
|
|
82
|
+
{
|
|
83
|
+
"results": [
|
|
84
|
+
{
|
|
85
|
+
"startup": "SeQura",
|
|
86
|
+
"sector": "Fintech / BNPL",
|
|
87
|
+
"hq": "Barcelona",
|
|
88
|
+
"funding_round": "Series D (Nov 2024)",
|
|
89
|
+
"amount": "~€410M (incl. debt)"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"startup": "TravelPerk",
|
|
93
|
+
"sector": "Business Travel SaaS",
|
|
94
|
+
"hq": "Barcelona",
|
|
95
|
+
"funding_round": "Series D (Nov 2024)"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"entities": [
|
|
99
|
+
{ "id": "df8ea521-f2b1-47f7-9b46-419e179d914b", "name": "SeQura", "entity_type": "Organization" },
|
|
100
|
+
{ "id": "2f0da3c2-4d1d-41f5-b433-82df365c27de", "name": "TravelPerk", "entity_type": "Organization" }
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
```
|
|
79
104
|
|
|
80
105
|
### Search Entities
|
|
81
106
|
|
|
82
107
|
Find entities by name (supports fuzzy matching). Returns a list of matches with IDs.
|
|
83
108
|
|
|
84
|
-
**Input:** `"OpenAI"`
|
|
109
|
+
**Input:** `"OpenAI"` with limit `3`
|
|
110
|
+
|
|
111
|
+
**Output:**
|
|
112
|
+
```json
|
|
113
|
+
{
|
|
114
|
+
"entities": [
|
|
115
|
+
{ "id": "e5bb591a-d308-4aa5-9672-96046d366cde", "name": "OpenAI", "entity_type": "Organization" },
|
|
116
|
+
{ "id": "7eacce50-c89f-44a8-b8e4-a41f543683f2", "name": "OpenAI Codex", "entity_type": "Product" },
|
|
117
|
+
{ "id": "e849412b-dcee-4df1-9461-a7cbdb9c32c7", "name": "OpenAI, Inc.", "entity_type": "Organization" }
|
|
118
|
+
]
|
|
119
|
+
}
|
|
120
|
+
```
|
|
85
121
|
|
|
86
122
|
### Get Entity
|
|
87
123
|
|
|
88
|
-
Get the full profile of an entity by its
|
|
124
|
+
Get the full profile of an entity by its ID (from Search or Search Entities results).
|
|
125
|
+
|
|
126
|
+
**Input:** `"932ba22a-5310-4b21-bbb7-6b91741c8bb3"`
|
|
127
|
+
|
|
128
|
+
**Output:**
|
|
129
|
+
```json
|
|
130
|
+
{
|
|
131
|
+
"properties": {
|
|
132
|
+
"name": {
|
|
133
|
+
"value": "Hydnum Steel",
|
|
134
|
+
"sources": [{ "name": "Cala AI", "document": "", "date": "2026-03-05" }]
|
|
135
|
+
},
|
|
136
|
+
"registered_address": {
|
|
137
|
+
"value": "Calle Serrano North 45, Madrid, Spain",
|
|
138
|
+
"sources": [{ "name": "CB Insights", "document": "https://www.cbinsights.com/company/hydnum-steel", "date": "2026-03-02" }]
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"id": { "value": "932ba22a-5310-4b21-bbb7-6b91741c8bb3", "sources": [] },
|
|
142
|
+
"relationships": { "outgoing": {}, "incoming": {} },
|
|
143
|
+
"numerical_observations": []
|
|
144
|
+
}
|
|
145
|
+
```
|
|
89
146
|
|
|
90
147
|
## Resources
|
|
91
148
|
|