-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathintegrations.json
More file actions
12743 lines (12743 loc) · 429 KB
/
integrations.json
File metadata and controls
12743 lines (12743 loc) · 429 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"type": "onepassword",
"slug": "1password",
"name": "1Password",
"description": "Manage secrets and items in 1Password vaults",
"longDescription": "Access and manage secrets stored in 1Password vaults using the Connect API or Service Account SDK. List vaults, retrieve items with their fields and secrets, create new items, update existing ones, delete items, and resolve secret references.",
"bgColor": "#E0E0E0",
"iconName": "OnePasswordIcon",
"docsUrl": "https://docs.sim.ai/tools/onepassword",
"operations": [
{
"name": "List Vaults",
"description": "List all vaults accessible by the Connect token or Service Account"
},
{
"name": "Get Vault",
"description": "Get details of a specific vault by ID"
},
{
"name": "List Items",
"description": "List items in a vault. Returns summaries without field values."
},
{
"name": "Get Item",
"description": "Get full details of an item including all fields and secrets"
},
{
"name": "Create Item",
"description": "Create a new item in a vault"
},
{
"name": "Replace Item",
"description": "Replace an entire item with new data (full update)"
},
{
"name": "Update Item",
"description": "Update an existing item using JSON Patch operations (RFC6902)"
},
{
"name": "Delete Item",
"description": "Delete an item from a vault"
},
{
"name": "Resolve Secret",
"description": "Resolve a secret reference (op://vault/item/field) to its value. Service Account mode only."
}
],
"operationCount": 9,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "security",
"tags": ["secrets-management", "identity"]
},
{
"type": "a2a",
"slug": "a2a",
"name": "A2A",
"description": "Interact with external A2A-compatible agents",
"longDescription": "Use the A2A (Agent-to-Agent) protocol to interact with external AI agents. ",
"bgColor": "#4151B5",
"iconName": "A2AIcon",
"docsUrl": "https://docs.sim.ai/blocks/a2a",
"operations": [
{
"name": "Send Message",
"description": "Send a message to an external A2A-compatible agent."
},
{
"name": "Get Task",
"description": "Query the status of an existing A2A task."
},
{
"name": "Cancel Task",
"description": "Cancel a running A2A task."
},
{
"name": "Get Agent Card",
"description": "Fetch the Agent Card (discovery document) for an A2A agent."
},
{
"name": "Resubscribe",
"description": "Reconnect to an ongoing A2A task stream after connection interruption."
},
{
"name": "Set Push Notification",
"description": "Configure a webhook to receive task update notifications."
},
{
"name": "Get Push Notification",
"description": "Get the push notification webhook configuration for a task."
},
{
"name": "Delete Push Notification",
"description": "Delete the push notification webhook configuration for a task."
}
],
"operationCount": 8,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "developer-tools",
"tags": ["agentic", "automation"]
},
{
"type": "agentmail",
"slug": "agentmail",
"name": "AgentMail",
"description": "Manage email inboxes, threads, and messages with AgentMail",
"longDescription": "Integrate AgentMail into your workflow. Create and manage email inboxes, send and receive messages, reply to threads, manage drafts, and organize threads with labels. Requires API Key.",
"bgColor": "#000000",
"iconName": "AgentMailIcon",
"docsUrl": "https://docs.sim.ai/tools/agentmail",
"operations": [
{
"name": "Send Message",
"description": "Send an email message from an AgentMail inbox"
},
{
"name": "Reply to Message",
"description": "Reply to an existing email message in AgentMail"
},
{
"name": "Forward Message",
"description": "Forward an email message to new recipients in AgentMail"
},
{
"name": "List Threads",
"description": "List email threads in AgentMail"
},
{
"name": "Get Thread",
"description": "Get details of a specific email thread including messages in AgentMail"
},
{
"name": "Update Thread Labels",
"description": "Add or remove labels on an email thread in AgentMail"
},
{
"name": "Delete Thread",
"description": "Delete an email thread in AgentMail (moves to trash, or permanently deletes if already in trash)"
},
{
"name": "List Messages",
"description": "List messages in an inbox in AgentMail"
},
{
"name": "Get Message",
"description": "Get details of a specific email message in AgentMail"
},
{
"name": "Update Message Labels",
"description": "Add or remove labels on an email message in AgentMail"
},
{
"name": "Create Draft",
"description": "Create a new email draft in AgentMail"
},
{
"name": "List Drafts",
"description": "List email drafts in an inbox in AgentMail"
},
{
"name": "Get Draft",
"description": "Get details of a specific email draft in AgentMail"
},
{
"name": "Update Draft",
"description": "Update an existing email draft in AgentMail"
},
{
"name": "Delete Draft",
"description": "Delete an email draft in AgentMail"
},
{
"name": "Send Draft",
"description": "Send an existing email draft in AgentMail"
},
{
"name": "Create Inbox",
"description": "Create a new email inbox with AgentMail"
},
{
"name": "List Inboxes",
"description": "List all email inboxes in AgentMail"
},
{
"name": "Get Inbox",
"description": "Get details of a specific email inbox in AgentMail"
},
{
"name": "Update Inbox",
"description": "Update the display name of an email inbox in AgentMail"
},
{
"name": "Delete Inbox",
"description": "Delete an email inbox in AgentMail"
}
],
"operationCount": 21,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "email",
"tags": ["messaging"]
},
{
"type": "ahrefs",
"slug": "ahrefs",
"name": "Ahrefs",
"description": "SEO analysis with Ahrefs",
"longDescription": "Integrate Ahrefs SEO tools into your workflow. Analyze domain ratings, backlinks, organic keywords, top pages, and more. Requires an Ahrefs Enterprise plan with API access.",
"bgColor": "#E0E0E0",
"iconName": "AhrefsIcon",
"docsUrl": "https://docs.ahrefs.com/docs/api/reference/introduction",
"operations": [
{
"name": "Domain Rating",
"description": "Get the Domain Rating (DR) and Ahrefs Rank for a target domain. Domain Rating shows the strength of a website"
},
{
"name": "Backlinks",
"description": "Get a list of backlinks pointing to a target domain or URL. Returns details about each backlink including source URL, anchor text, and domain rating."
},
{
"name": "Backlinks Stats",
"description": "Get backlink statistics for a target domain or URL. Returns totals for different backlink types including dofollow, nofollow, text, image, and redirect links."
},
{
"name": "Referring Domains",
"description": "Get a list of domains that link to a target domain or URL. Returns unique referring domains with their domain rating, backlink counts, and discovery dates."
},
{
"name": "Organic Keywords",
"description": "Get organic keywords that a target domain or URL ranks for in Google search results. Returns keyword details including search volume, ranking position, and estimated traffic."
},
{
"name": "Top Pages",
"description": "Get the top pages of a target domain sorted by organic traffic. Returns page URLs with their traffic, keyword counts, and estimated traffic value."
},
{
"name": "Keyword Overview",
"description": "Get detailed metrics for a keyword including search volume, keyword difficulty, CPC, clicks, and traffic potential."
},
{
"name": "Broken Backlinks",
"description": "Get a list of broken backlinks pointing to a target domain or URL. Useful for identifying link reclamation opportunities."
}
],
"operationCount": 8,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "analytics",
"tags": ["seo", "marketing", "data-analytics"]
},
{
"type": "airtable",
"slug": "airtable",
"name": "Airtable",
"description": "Read, create, and update Airtable",
"longDescription": "Integrates Airtable into the workflow. Can list bases, list tables (with schema), and create, get, list, or update records. Can also be used in trigger mode to trigger a workflow when an update is made to an Airtable table.",
"bgColor": "#E0E0E0",
"iconName": "AirtableIcon",
"docsUrl": "https://docs.sim.ai/tools/airtable",
"operations": [
{
"name": "List Bases",
"description": "List all bases the authenticated user has access to"
},
{
"name": "List Tables",
"description": "List all tables and their schema in an Airtable base"
},
{
"name": "Get Base Schema",
"description": "Get the schema of all tables, fields, and views in an Airtable base"
},
{
"name": "List Records",
"description": "Read records from an Airtable table"
},
{
"name": "Get Record",
"description": "Retrieve a single record from an Airtable table by its ID"
},
{
"name": "Create Records",
"description": "Write new records to an Airtable table"
},
{
"name": "Update Record",
"description": "Update an existing record in an Airtable table by ID"
},
{
"name": "Update Multiple Records",
"description": "Update multiple existing records in an Airtable table"
}
],
"operationCount": 8,
"triggers": [
{
"id": "airtable_webhook",
"name": "Airtable Webhook",
"description": "Trigger workflow from Airtable record changes like create, update, and delete events (requires Airtable credentials)"
}
],
"triggerCount": 1,
"authType": "oauth",
"category": "tools",
"integrationType": "databases",
"tags": ["spreadsheet", "automation"]
},
{
"type": "airweave",
"slug": "airweave",
"name": "Airweave",
"description": "Search your synced data collections",
"longDescription": "Search across your synced data sources using Airweave. Supports semantic search with hybrid, neural, or keyword retrieval strategies. Optionally generate AI-powered answers from search results.",
"bgColor": "#6366F1",
"iconName": "AirweaveIcon",
"docsUrl": "https://docs.airweave.ai",
"operations": [],
"operationCount": 0,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "search",
"tags": ["vector-search", "knowledge-base"]
},
{
"type": "algolia",
"slug": "algolia",
"name": "Algolia",
"description": "Search and manage Algolia indices",
"longDescription": "Integrate Algolia into your workflow. Search indices, manage records (add, update, delete, browse), configure index settings, and perform batch operations.",
"bgColor": "#003DFF",
"iconName": "AlgoliaIcon",
"docsUrl": "https://docs.sim.ai/tools/algolia",
"operations": [
{
"name": "Search",
"description": "Search an Algolia index"
},
{
"name": "Add Record",
"description": "Add or replace a record in an Algolia index"
},
{
"name": "Get Record",
"description": "Get a record by objectID from an Algolia index"
},
{
"name": "Get Records",
"description": "Retrieve multiple records by objectID from one or more Algolia indices"
},
{
"name": "Partial Update Record",
"description": "Partially update a record in an Algolia index without replacing it entirely"
},
{
"name": "Delete Record",
"description": "Delete a record by objectID from an Algolia index"
},
{
"name": "Browse Records",
"description": "Browse and iterate over all records in an Algolia index using cursor pagination"
},
{
"name": "Batch Operations",
"description": "Perform batch add, update, partial update, or delete operations on records in an Algolia index"
},
{
"name": "List Indices",
"description": "List all indices in an Algolia application"
},
{
"name": "Get Settings",
"description": "Retrieve the settings of an Algolia index"
},
{
"name": "Update Settings",
"description": "Update the settings of an Algolia index"
},
{
"name": "Delete Index",
"description": "Delete an entire Algolia index and all its records"
},
{
"name": "Copy/Move Index",
"description": "Copy or move an Algolia index to a new destination"
},
{
"name": "Clear Records",
"description": "Clear all records from an Algolia index while keeping settings, synonyms, and rules"
},
{
"name": "Delete By Filter",
"description": "Delete all records matching a filter from an Algolia index"
}
],
"operationCount": 15,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "search",
"tags": ["vector-search", "knowledge-base"]
},
{
"type": "dynamodb",
"slug": "amazon-dynamodb",
"name": "Amazon DynamoDB",
"description": "Connect to Amazon DynamoDB",
"longDescription": "Integrate Amazon DynamoDB into workflows. Supports Get, Put, Query, Scan, Update, Delete, and Introspect operations on DynamoDB tables.",
"bgColor": "linear-gradient(45deg, #2E27AD 0%, #527FFF 100%)",
"iconName": "DynamoDBIcon",
"docsUrl": "https://docs.sim.ai/tools/dynamodb",
"operations": [
{
"name": "Get Item",
"description": "Get an item from a DynamoDB table by primary key"
},
{
"name": "Put Item",
"description": "Put an item into a DynamoDB table"
},
{
"name": "Query",
"description": "Query items from a DynamoDB table using key conditions"
},
{
"name": "Scan",
"description": "Scan all items in a DynamoDB table"
},
{
"name": "Update Item",
"description": "Update an item in a DynamoDB table"
},
{
"name": "Delete Item",
"description": "Delete an item from a DynamoDB table"
},
{
"name": "Introspect",
"description": "Introspect DynamoDB to list tables or get detailed schema information for a specific table"
}
],
"operationCount": 7,
"triggers": [],
"triggerCount": 0,
"authType": "none",
"category": "tools",
"integrationType": "databases",
"tags": ["cloud", "data-warehouse"]
},
{
"type": "rds",
"slug": "amazon-rds",
"name": "Amazon RDS",
"description": "Connect to Amazon RDS via Data API",
"longDescription": "Integrate Amazon RDS Aurora Serverless into the workflow using the Data API. Can query, insert, update, delete, and execute raw SQL without managing database connections.",
"bgColor": "linear-gradient(45deg, #2E27AD 0%, #527FFF 100%)",
"iconName": "RDSIcon",
"docsUrl": "https://docs.sim.ai/tools/rds",
"operations": [
{
"name": "Query (SELECT)",
"description": "Execute a SELECT query on Amazon RDS using the Data API"
},
{
"name": "Insert Data",
"description": "Insert data into an Amazon RDS table using the Data API"
},
{
"name": "Update Data",
"description": "Update data in an Amazon RDS table using the Data API"
},
{
"name": "Delete Data",
"description": "Delete data from an Amazon RDS table using the Data API"
},
{
"name": "Execute Raw SQL",
"description": "Execute raw SQL on Amazon RDS using the Data API"
},
{
"name": "Introspect Schema",
"description": "Introspect Amazon RDS Aurora database schema to retrieve table structures, columns, and relationships"
}
],
"operationCount": 6,
"triggers": [],
"triggerCount": 0,
"authType": "none",
"category": "tools",
"integrationType": "databases",
"tags": ["cloud", "data-warehouse"]
},
{
"type": "sqs",
"slug": "amazon-sqs",
"name": "Amazon SQS",
"description": "Connect to Amazon SQS",
"longDescription": "Integrate Amazon SQS into the workflow. Can send messages to SQS queues.",
"bgColor": "linear-gradient(45deg, #2E27AD 0%, #527FFF 100%)",
"iconName": "SQSIcon",
"docsUrl": "https://docs.sim.ai/tools/sqs",
"operations": [
{
"name": "Send Message",
"description": "Send a message to an Amazon SQS queue"
}
],
"operationCount": 1,
"triggers": [],
"triggerCount": 0,
"authType": "none",
"category": "tools",
"integrationType": "developer-tools",
"tags": ["cloud", "messaging", "automation"]
},
{
"type": "amplitude",
"slug": "amplitude",
"name": "Amplitude",
"description": "Track events and query analytics from Amplitude",
"longDescription": "Integrate Amplitude into your workflow to track events, identify users and groups, search for users, query analytics, and retrieve revenue data.",
"bgColor": "#1B1F3B",
"iconName": "AmplitudeIcon",
"docsUrl": "https://docs.sim.ai/tools/amplitude",
"operations": [
{
"name": "Send Event",
"description": "Track an event in Amplitude using the HTTP V2 API."
},
{
"name": "Identify User",
"description": "Set user properties in Amplitude using the Identify API. Supports $set, $setOnce, $add, $append, $unset operations."
},
{
"name": "Group Identify",
"description": "Set group-level properties in Amplitude. Supports $set, $setOnce, $add, $append, $unset operations."
},
{
"name": "User Search",
"description": "Search for a user by User ID, Device ID, or Amplitude ID using the Dashboard REST API."
},
{
"name": "User Activity",
"description": "Get the event stream for a specific user by their Amplitude ID."
},
{
"name": "User Profile",
"description": "Get a user profile including properties, cohort memberships, and computed properties."
},
{
"name": "Event Segmentation",
"description": "Query event analytics data with segmentation. Get event counts, uniques, averages, and more."
},
{
"name": "Get Active Users",
"description": "Get active or new user counts over a date range from the Dashboard REST API."
},
{
"name": "Real-time Active Users",
"description": "Get real-time active user counts at 5-minute granularity for the last 2 days."
},
{
"name": "List Events",
"description": "List all event types in the Amplitude project with their weekly totals and unique counts."
},
{
"name": "Get Revenue",
"description": "Get revenue LTV data including ARPU, ARPPU, total revenue, and paying user counts."
}
],
"operationCount": 11,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "analytics",
"tags": ["data-analytics", "marketing"]
},
{
"type": "apify",
"slug": "apify",
"name": "Apify",
"description": "Run Apify actors and retrieve results",
"longDescription": "Integrate Apify into your workflow. Run any Apify actor with custom input and retrieve results. Supports both synchronous and asynchronous execution with automatic dataset fetching.",
"bgColor": "#E0E0E0",
"iconName": "ApifyIcon",
"docsUrl": "https://docs.sim.ai/tools/apify",
"operations": [
{
"name": "Run Actor",
"description": "Run an APIFY actor synchronously and get results (max 5 minutes)"
},
{
"name": "Run Actor (Async)",
"description": "Run an APIFY actor asynchronously with polling for long-running tasks"
}
],
"operationCount": 2,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "automation",
"tags": ["web-scraping", "automation", "data-analytics"]
},
{
"type": "apollo",
"slug": "apollo",
"name": "Apollo",
"description": "Search, enrich, and manage contacts with Apollo.io",
"longDescription": "Integrates Apollo.io into the workflow. Search for people and companies, enrich contact data, manage your CRM contacts and accounts, add contacts to sequences, and create tasks.",
"bgColor": "#EBF212",
"iconName": "ApolloIcon",
"docsUrl": "https://docs.sim.ai/tools/apollo",
"operations": [
{
"name": "Search People",
"description": "Search Apollo"
},
{
"name": "Enrich Person",
"description": "Enrich data for a single person using Apollo"
},
{
"name": "Bulk Enrich People",
"description": "Enrich data for up to 10 people at once using Apollo"
},
{
"name": "Search Organizations",
"description": "Search Apollo"
},
{
"name": "Enrich Organization",
"description": "Enrich data for a single organization using Apollo"
},
{
"name": "Bulk Enrich Organizations",
"description": "Enrich data for up to 10 organizations at once using Apollo"
},
{
"name": "Create Contact",
"description": "Create a new contact in your Apollo database"
},
{
"name": "Update Contact",
"description": "Update an existing contact in your Apollo database"
},
{
"name": "Search Contacts",
"description": "Search your team"
},
{
"name": "Bulk Create Contacts",
"description": "Create up to 100 contacts at once in your Apollo database. Supports deduplication to prevent creating duplicate contacts. Master key required."
},
{
"name": "Bulk Update Contacts",
"description": "Update up to 100 existing contacts at once in your Apollo database. Each contact must include an id field. Master key required."
},
{
"name": "Create Account",
"description": "Create a new account (company) in your Apollo database"
},
{
"name": "Update Account",
"description": "Update an existing account in your Apollo database"
},
{
"name": "Search Accounts",
"description": "Search your team"
},
{
"name": "Bulk Create Accounts",
"description": "Create up to 100 accounts at once in your Apollo database. Note: Apollo does not apply deduplication - duplicate accounts may be created if entries share similar names or domains. Master key required."
},
{
"name": "Bulk Update Accounts",
"description": "Update up to 1000 existing accounts at once in your Apollo database (higher limit than contacts!). Each account must include an id field. Master key required."
},
{
"name": "Create Opportunity",
"description": "Create a new deal for an account in your Apollo database (master key required)"
},
{
"name": "Search Opportunities",
"description": "Search and list all deals/opportunities in your team"
},
{
"name": "Get Opportunity",
"description": "Retrieve complete details of a specific deal/opportunity by ID"
},
{
"name": "Update Opportunity",
"description": "Update an existing deal/opportunity in your Apollo database"
},
{
"name": "Search Sequences",
"description": "Search for sequences/campaigns in your team"
},
{
"name": "Add to Sequence",
"description": "Add contacts to an Apollo sequence"
},
{
"name": "Create Task",
"description": "Create a new task in Apollo"
},
{
"name": "Search Tasks",
"description": "Search for tasks in Apollo"
},
{
"name": "Get Email Accounts",
"description": "Get list of team"
}
],
"operationCount": 25,
"triggers": [],
"triggerCount": 0,
"authType": "api-key",
"category": "tools",
"integrationType": "sales-intelligence",
"tags": ["enrichment", "sales-engagement"]
},
{
"type": "arxiv",
"slug": "arxiv",
"name": "ArXiv",
"description": "Search and retrieve academic papers from ArXiv",
"longDescription": "Integrates ArXiv into the workflow. Can search for papers, get paper details, and get author papers. Does not require OAuth or an API key.",
"bgColor": "#E0E0E0",
"iconName": "ArxivIcon",
"docsUrl": "https://docs.sim.ai/tools/arxiv",
"operations": [
{
"name": "Search Papers",
"description": "Search for academic papers on ArXiv by keywords, authors, titles, or other fields."
},
{
"name": "Get Paper Details",
"description": "Get detailed information about a specific ArXiv paper by its ID."
},
{
"name": "Get Author Papers",
"description": "Search for papers by a specific author on ArXiv."
}
],
"operationCount": 3,
"triggers": [],
"triggerCount": 0,
"authType": "none",
"category": "tools",
"integrationType": "search",
"tags": ["document-processing", "knowledge-base"]
},
{
"type": "asana",
"slug": "asana",
"name": "Asana",
"description": "Interact with Asana",
"longDescription": "Integrate Asana into the workflow. Can read, write, and update tasks.",
"bgColor": "#E0E0E0",
"iconName": "AsanaIcon",
"docsUrl": "https://docs.sim.ai/tools/asana",
"operations": [
{
"name": "Get Task",
"description": "Retrieve a single task by GID or get multiple tasks with filters"
},
{
"name": "Create Task",
"description": "Create a new task in Asana"
},
{
"name": "Update Task",
"description": "Update an existing task in Asana"
},
{
"name": "Get Projects",
"description": "Retrieve all projects from an Asana workspace"
},
{
"name": "Search Tasks",
"description": "Search for tasks in an Asana workspace"
},
{
"name": "Add Comment",
"description": "Add a comment (story) to an Asana task"
}
],
"operationCount": 6,
"triggers": [],
"triggerCount": 0,
"authType": "oauth",
"category": "tools",
"integrationType": "productivity",
"tags": ["project-management", "ticketing", "automation"]
},
{
"type": "ashby",
"slug": "ashby",
"name": "Ashby",
"description": "Manage candidates, jobs, and applications in Ashby",
"longDescription": "Integrate Ashby into the workflow. Manage candidates (list, get, create, update, search, tag), applications (list, get, create, change stage), jobs (list, get), job postings (list, get), offers (list, get), notes (list, create), interviews (list), and reference data (sources, tags, archive reasons, custom fields, departments, locations, openings, users).",
"bgColor": "#5D4ED6",
"iconName": "AshbyIcon",
"docsUrl": "https://docs.sim.ai/tools/ashby",
"operations": [
{
"name": "List Candidates",
"description": "Lists all candidates in an Ashby organization with cursor-based pagination."
},
{
"name": "Get Candidate",
"description": "Retrieves full details about a single candidate by their ID."
},
{
"name": "Create Candidate",
"description": "Creates a new candidate record in Ashby."
},
{
"name": "Update Candidate",
"description": "Updates an existing candidate record in Ashby. Only provided fields are changed."
},
{
"name": "Search Candidates",
"description": "Searches for candidates by name and/or email with AND logic. Results are limited to 100 matches. Use candidate.list for full pagination."
},
{
"name": "List Jobs",
"description": "Lists all jobs in an Ashby organization. By default returns Open, Closed, and Archived jobs. Specify status to filter."
},
{
"name": "Get Job",
"description": "Retrieves full details about a single job by its ID."
},
{
"name": "Create Note",
"description": "Creates a note on a candidate in Ashby. Supports plain text and HTML content (bold, italic, underline, links, lists, code)."
},
{
"name": "List Notes",
"description": "Lists all notes on a candidate with pagination support."
},
{
"name": "List Applications",
"description": "Lists all applications in an Ashby organization with pagination and optional filters for status, job, candidate, and creation date."
},
{
"name": "Get Application",
"description": "Retrieves full details about a single application by its ID."
},
{
"name": "Create Application",
"description": "Creates a new application for a candidate on a job. Optionally specify interview plan, stage, source, and credited user."
},
{
"name": "List Offers",
"description": "Lists all offers with their latest version in an Ashby organization."
},
{
"name": "Change Application Stage",
"description": "Moves an application to a different interview stage. Requires an archive reason when moving to an Archived stage."
},
{
"name": "Add Candidate Tag",
"description": "Adds a tag to a candidate in Ashby."
},
{
"name": "Remove Candidate Tag",
"description": "Removes a tag from a candidate in Ashby."
},
{
"name": "Get Offer",
"description": "Retrieves full details about a single offer by its ID."
},
{
"name": "List Sources",
"description": "Lists all candidate sources configured in Ashby."
},
{
"name": "List Candidate Tags",
"description": "Lists all candidate tags configured in Ashby."
},
{
"name": "List Archive Reasons",
"description": "Lists all archive reasons configured in Ashby."
},
{
"name": "List Custom Fields",
"description": "Lists all custom field definitions configured in Ashby."
},
{
"name": "List Departments",
"description": "Lists all departments in Ashby."
},
{
"name": "List Locations",
"description": "Lists all locations configured in Ashby."
},
{
"name": "List Job Postings",
"description": "Lists all job postings in Ashby."
},
{
"name": "Get Job Posting",
"description": "Retrieves full details about a single job posting by its ID."
},
{
"name": "List Openings",
"description": "Lists all openings in Ashby with pagination."
},
{
"name": "List Users",
"description": "Lists all users in Ashby with pagination."
},
{
"name": "List Interviews",
"description": "Lists interview schedules in Ashby, optionally filtered by application or interview stage."
}
],
"operationCount": 28,
"triggers": [
{
"id": "ashby_application_submit",
"name": "Ashby Application Submitted",
"description": "Trigger workflow when a new application is submitted"
},
{
"id": "ashby_candidate_stage_change",
"name": "Ashby Candidate Stage Change",
"description": "Trigger workflow when a candidate changes interview stages"
},
{
"id": "ashby_candidate_hire",
"name": "Ashby Candidate Hired",
"description": "Trigger workflow when a candidate is hired"
},
{
"id": "ashby_candidate_delete",
"name": "Ashby Candidate Deleted",
"description": "Trigger workflow when a candidate is deleted"
},
{
"id": "ashby_job_create",
"name": "Ashby Job Created",
"description": "Trigger workflow when a new job is created"
},
{
"id": "ashby_offer_create",
"name": "Ashby Offer Created",
"description": "Trigger workflow when a new offer is created"
}
],
"triggerCount": 6,
"authType": "api-key",
"category": "tools",
"integrationType": "hr",
"tags": ["hiring"]
},
{
"type": "attio",
"slug": "attio",
"name": "Attio",
"description": "Manage records, notes, tasks, lists, comments, and more in Attio CRM",
"longDescription": "Connect to Attio to manage CRM records (people, companies, custom objects), notes, tasks, lists, list entries, comments, workspace members, and webhooks.",
"bgColor": "#1D1E20",
"iconName": "AttioIcon",
"docsUrl": "https://docs.sim.ai/tools/attio",
"operations": [
{
"name": "List Records",
"description": "Query and list records for a given object type (e.g. people, companies)"
},
{
"name": "Get Record",
"description": "Get a single record by ID from Attio"
},
{
"name": "Create Record",
"description": "Create a new record in Attio for a given object type"
},
{
"name": "Update Record",
"description": "Update an existing record in Attio (appends multiselect values)"
},
{