Data

 
DotsTo-datastax
 DataStax
  
Free

Leverage vector search to build LLM, AI assistant, and real-time generative AI projects with massive speed and scale

Coming Soon !
Coming Soon !
Coming Soon !
DotsTo-heex
 Heex
  
Premium

Transition from Big Data to Smart Data to accelerate AI developments by getting the most value out of your data and deliver on the promise of ground-breaking innovations.
DotsTo-seatable
SeaTable
  
Free

As simple as Excel, with the power of a database SeaTable can handle all the information from you and your team: Images, documents, emails, checkboxes, drop-down lists, shortcuts and much more. You edit all information conveniently via web browser.

curl --request GET \ --url https://cloud.seatable.io/api/v2.1/workspace/workspace_id/dtable/base_name/api-tokens/ \ --header 'accept: application/json'
import requests url = "https://cloud.seatable.io/api/v2.1/workspace/workspace_id/dtable/base_name/api-tokens/" headers = {"accept": "application/json"} response = requests.get(url, headers=headers) print(response.text)
const sdk = require('api')('@seatable/v4.0#1552h928pljsjlvyy'); sdk.getApiV21WorkspaceWorkspace_idDtableBase_nameApiTokens({workspace_id: 'workspace_id', base_name: 'base_name'}) .then(({ data }) => console.log(data)) .catch(err => console.error(err));
DotsTo-slab
 Slab
  
Premium

Easily create, organize, and discover knowledge for your entire organization, from non-technical to tech-savvy.
DotsTo-cherryservers
 Cherry Servers
  
Free

Build on an open cloud platform that gives you full control, ensures stable workloads and provides free technical support 24/7

curl -H 'Authorization: Bearer my_authentication_token'
go get github.com/cherryservers/cherrygo
import cherry import json master = cherry.Master(auth_token="api_token") teams = master.get_teams() for team in teams: t = json.dumps(team) parse_t = json.loads(t) print("Team ID: %s -> Team Name: %s" % (parse_t['id'], parse_t['name']))
DotsTo-confluent
 Confluent
  
Premium

Confluent creates the foundational platform for data in motion. With Confluent, companies can harness the full power of continuous data streams to innovate and thrive in the modern digital world.

Coming Soon !
def delivery_callback(err, msg): if err: print('ERROR: Message failed delivery: {}'.format(err)) producer = Producer(config) producer.produce(topic, value, key, callback=delivery_callback)
let producer = new Kafka.Producer(config); let onDeliveryReport = (err, report) => { if (err) { console.error("error producing", err); } }; let promise = new Promise((resolve, reject) => { producer .on("ready", () => resolve(producer)) .on("delivery-report", onDeliveryReport) .on("event.error", (err) => { console.warn("event.error", err); reject(err); }); producer.connect(); }); producer = await promise; try { producer.produce(topic, -1, value, key); } catch (err) { console.error(`error producing:\n${err}`); process.exit(1); }
DotsTo-brightdata
 Bright Data
  
Free

Award-winning proxy networks, powerful web scrapers, and ready-to-use datasets for download. Welcome to the world’s #1 web data platform.
DotsTo-heydata
 heyData
  
Premium

With our all-in-one package, you will become data protection fit in no time and focus on tasks that really get you ahead. With three simple price models, heyData offers an ideal compliance solution, especially for start-ups and small and medium-sized companies.3
DotsTo-pathway
 Pathway
  
Free

Pathway is a free ultra-performant data processing framework to power your real-time data products and pipelines.
DotsTo-kili-technology
 Kili
  
Premium

Build any training dataset 30% to 500% faster. Kili is one tool to review and label fast, find and fix errors, simplify your data operations, and leverage integrated expert labeling services.

Coming Soon !
Coming Soon !
Coming Soon !
DotsTo-isahit
 Isahit
  
Free

But it can be done ethically, with fairly paid jobs

Coming Soon !
Coming Soon !
Coming Soon !
DotsTo-mydatamodels
 
  
Premium

We democratize AI and make it simple
DotsTo-ai-verse
 AI Verse
  
Free

Accurately train your hungry AI models faster, easier and affordably.
DotsTo-dataiku
 Dataiku
  
Premium

Dataiku provides you with the inspiration and expertise needed to start working with Generative AI today.
DotsTo-invenis
 Invenis
  
Free

With Invenis, actors in the Defense, Security, and Public Sector build robust data projects, using all their sensitive, massive, and heterogeneous data.
DotsTo-firstbatch
 FirstBatch
  
Premium

User embeddings, compatible with all vector databases, enable instantly personalized experiences while ensuring personal and privacy-preserving memory for AI.
DotsTo-octopize
Octopize
  
Free

Do you wish to use personal data for new purposes without constraints?
Avatar: anonymous synthetic data. Useful and risk-free data.
DotsTo-safegraph
 SafeGraph
  
Premium

The most accurate database of global points of interest, curated to power the most innovative applications, platforms, and analytics.
DotsTo-dust
 Dust
  
Free

AI is changing the way we work and is a competitive advantage for smart teams that harness its potential effectively.

curl https://dust.tt/api/v1/w/3e26b0e764/data_sources/foo/documents/top-secret-document \ -H "Authorization: Bearer sk-..." \ -H "Content-Type: application/json" \ -d '{ "text": "Top secret content..." }'
Coming Soon !
Coming Soon !
DotsTo-four40
 four40
  
Premium

Four40 brings all your tools under one platform & lets you run our AI-powered agents from one place
DotsTo-selas
 Selas
  
Free

Plug and Play services to leverage State of the Art text-to-anything features for your product.

Coming Soon !
Coming Soon !
Coming Soon !
DotsTo-edenai
 Eden AI
  
Premium

Eden AI provides a unique API connected to the best AI engines

... -H 'content-type: application/json' \ ..
{ authorization: "Bearer 🔑 Your_API_Key" }
{ 'Authorization':'Bearer 🔑 Your_API_Key' }
DotsTo-phospho
 Phospho
  
Free

Phospho is the first agent deployment tool by design. We are enabling AI developers to build and ship faster.

Coming Soon !
Coming Soon !
Coming Soon !
DotsTo-docs-chainlit-io
 Chainlit
  
Premium

Chainlit is an open-source Python package that makes it incredibly fast to build and share LLM apps. Integrate the Chainlit API in your existing code to spawn a ChatGPT-like interface in minutes!

Coming Soon !
Coming Soon !
Coming Soon !
DotsTo-gladia
 Gladia
  
Free

Unlock the full potential of your audio data with AI transcription, translation and audio intelligence add-ons using a single API.

curl -X POST \ -H 'x-gladia-key: YOUR_GLADIA_TOKEN' \ -H 'accept: application/json' \ -F 'audio=@audio.mp3;type=audio/mp3' \ -F 'toggle_diarization=True' \ https://api.gladia.io/audio/text/audio-transcription/
import fetch, { Headers, RequestInit, Response } from "node-fetch"; import FormData from "form-data"; const form = new FormData(); form.append('toggle_diarization', 'true'); form.append('audio_url', 'http://misc.io/example/audio.mp3'); fetch('https://api.gladia.io/audio/text/audio-transcription/', { method: 'POST', headers: { 'x-gladia-key': YOUR_GLADIA_KEY, }, body: form });  .then((response) => response.text())  .then((text) => console.log(text))  .catch((error) => console.log("Error:", error));
import requests headers = { 'accept': 'application/json', 'x-gladia-key': YOUR_GLADIA_KEY, } files = { 'audio_url': (None, 'http://misc.io/example/audio.mp3'), 'output_format': (None, 'json'), 'toggler_diarization': (None, 'true'), } response = requests.post('https://api.gladia.io/audio/text/audio-transcription/', headers=headers, files=files) print(response.text)
DotsTo-aleia
 Aleia
  
Premium

The collaborative and sovereign AI SaaS platform that accelerates and secures the deployment of your AI projects.
DotsTo-giskard-ai
 Giskard
  
Free

Eliminate risks of biases, performance issues and errors in ML models. In 4 lines of code. From tabular models to LLMs.

Coming Soon !
Coming Soon !
Coming Soon !
 Formant
  
Premium

Formant is a cloud platform that helps robotics companies easily deploy, scale, and manage their fleets.

curl --request POST \ --url https://api.formant.io/v1/admin/accounts \ --header 'accept: application/json' \ --header 'content-type: application/json'
const options = { method: 'POST', headers: {accept: 'application/json', 'content-type': 'application/json'} }; fetch('https://api.formant.io/v1/admin/accounts', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));
import requests url = "https://api.formant.io/v1/admin/accounts" headers = { "accept": "application/json", "content-type": "application/json" } response = requests.post(url, headers=headers) print(response.text)
Robot Icon DotsTo