Rows Spreadsheets API

List and read spreadsheets and their tables.

Operations 2

GET /spreadsheets List spreadsheets #
GET /spreadsheets/{spreadsheetId} Get a spreadsheet #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/rows-spreadsheets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

rows-spreadsheets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rows Data Spreadsheets API
  version: v1
  description: The Rows API lets you programmatically read and write data in Rows spreadsheets. It exposes workspaces, folders and spreadsheets for discovery, table cell/value read-write operations for moving data in and out of a spreadsheet, and a Vision import endpoint that extracts structured data from image/document files using AI. Authentication is a Bearer API key generated from your Rows account. This description is DERIVED by API Evangelist from Rows' official public integration source (the first-party n8n community node) and the public developer docs; it captures the verified subset of operations and is not the provider's authoritative machine-readable contract.
  contact:
    name: Rows Support
    url: https://developers.rows.com/
  x-apievangelist-provenance:
    generated: '2026-07-21'
    method: derived
    source: https://github.com/rows/rows-n8n-nodes-rows (official first-party n8n node) + https://developers.rows.com/ + https://rows.com/docs/api
servers:
- url: https://api.rows.com/v1
  description: Production
security:
- BearerAuth: []
tags:
- name: Spreadsheets
  description: List and read spreadsheets and their tables.
paths:
  /spreadsheets:
    get:
      operationId: listSpreadsheets
      tags:
      - Spreadsheets
      summary: List spreadsheets
      description: List spreadsheets, optionally filtered to a single folder via the folder_id query parameter.
      parameters:
      - name: folder_id
        in: query
        required: false
        description: Restrict results to spreadsheets inside this folder.
        schema:
          type: string
      responses:
        '200':
          description: A list of spreadsheets.
        '401':
          description: Missing or invalid API key.
  /spreadsheets/{spreadsheetId}:
    get:
      operationId: getSpreadsheet
      tags:
      - Spreadsheets
      summary: Get a spreadsheet
      description: Retrieve a single spreadsheet, including its tables.
      parameters:
      - name: spreadsheetId
        in: path
        required: true
        description: The spreadsheet identifier.
        schema:
          type: string
      responses:
        '200':
          description: The spreadsheet and its tables.
        '401':
          description: Missing or invalid API key.
        '404':
          description: Spreadsheet not found.
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'Rows API key sent as an Authorization: Bearer <API_KEY> header. Generate a key in your Rows account settings.'