Indietro

#csv

5 APIs con questa etichetta

HTML Table API

Render tabular data as an HTML table, and parse an HTML table back into data. The render endpoint turns a JSON array (of objects, or of arrays) or CSV into a clean, semantic <table> with <thead>/<tbody>, an optional caption and CSS class — every cell HTML-escaped so it is safe to embed. The parse endpoint does the reverse: give it any HTML containing a table and get back the headers, the rows and a ready-to-use JSON array of objects, with entities decoded and tags stripped from each cell. Perfect for emails and reports, dashboards and admin screens, and scraping or migrating tabular content. Pure local computation — no key, no third-party service, instant; up to 2 MB via POST. Live, nothing stored. 3 endpoints. Distinct from Markdown/ASCII table rendering and from generic HTML extraction.

api.oanor.com/htmltable-api

Table API

Преобразуйте данные в готовую к вставке таблицу. Передайте JSON — либо массив объектов (столбцы берутся из ключей), либо массив массивов (первая строка — заголовок) — или сырой CSV, и получите чистую таблицу в стиле GitHub Markdown или моноширинную ASCII-таблицу (с рамками) с автоматически подогнанными столбцами. Вывод Markdown поддерживает выравнивание столбцов по левому/центру/правому краю и экранирует вертикальные черты; парсер CSV соответствует RFC-4180 (поля в кавычках, встроенные запятые и новые строки). Идеально подходит для README и генерации документации, вывода CLI и логов, списков изменений, чат-ботов и комментариев к пул-реквестам. Чисто локальные вычисления — без ключа, без сторонних сервисов, мгновенно; отправляйте большие наборы данных через POST. Работает в реальном времени, ничего не хранится. 3 конечные точки. Отличается от парсинга/анализа CSV и от рендеринга Markdown.

api.oanor.com/table-api

Cell Reference API

Spreadsheet cell-reference maths for Excel, Google Sheets, LibreOffice and CSV tooling. Parse an A1 reference (AA10) into its column letter, 1-based column number, row and R1C1 form; build an A1 (and R1C1) reference from a row and a column given either as a letter or a number; and convert a column letter to its number and back (A→1, Z→26, AA→27, ZZ→702). Absolute markers ($A$1) are accepted. Perfect for code that generates spreadsheets, maps data to cells, builds formulas, or imports and exports ranges. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 4 endpoints. Distinct from CSV parsing and from generic number-base conversion.

api.oanor.com/cellref-api

CSV API

Un kit de herramientas de datos CSV rápido y completamente local: analiza CSV en objetos de fila tipados (RFC-4180), calcula estadísticas por columna (recuento, únicos, tipo y valores principales, y para columnas numéricas mínimo, máximo, media, mediana y suma), elimina filas duplicadas por todas o un subconjunto de columnas, ordena por una columna con ordenación numérica, y filtra filas por una condición (igual, no igual, mayor/menor que, contiene, comienza con, vacío, no vacío). Cada endpoint acepta entrada a través de la cadena de consulta o el cuerpo de la solicitud, hasta 2 MB, y devuelve tanto objetos de fila como una cadena CSV. Cómputo puro del lado del servidor, sin terceros externos, por lo que las respuestas son instantáneas y siempre están disponibles. Ideal para manipulación de datos, ETL, preparación de análisis, herramientas de hojas de cálculo y limpieza de datos. (Para conversión simple de CSV a JSON, consulte la API JSON de oanor.)

api.oanor.com/csv-api

JSON API

Un kit d'outils JSON et CSV rapide et entièrement local : validez du JSON (avec un message d'erreur clair, type et taille), affichez-le et formatez-le joliment (avec tri profond optionnel des clés), minifiez-le (en signalant les octets économisés), et convertissez entre CSV et JSON — analyse CSV RFC-4180 avec typage automatique des valeurs, et tableaux JSON vers CSV. Chaque point d'accès accepte l'entrée via la chaîne de requête ou le corps de la requête (jusqu'à 1 Mo). Calcul pur côté serveur, sans tiers en amont, donc les réponses sont instantanées et toujours disponibles. Idéal pour les pipelines de données, ETL, webhooks, outils de configuration et utilitaires pour développeurs.

api.oanor.com/json-api