# Sheetfront > Sheetfront turns Google Sheets into hosted mini pages, forms, and REST APIs for prototypes, directories, waitlists, and lightweight internal tools. ## Endpoints - [Homepage](https://sheetfront.com/) - Product overview, pricing, and launch access. - [Docs](https://docs.sheetfront.com/docs) - Guides for connecting Google Sheets, publishing pages, forms, and APIs. - [Interactive API Reference](https://docs.sheetfront.com/docs/api-reference/interactive) - Explore request and response shapes. - `GET https://api.sheetfront.com/api/v1/sheets/{connection_id}/data` - Read visible rows from a connected Sheet. - `POST https://api.sheetfront.com/api/v1/sheets/{connection_id}/data` - Add a row to a connected Sheet. - `POST https://api.sheetfront.com/api/v1/sheets/{connection_id}/data/bulk` - Add multiple rows. ## Authentication Dashboard access uses Google sign-in at https://app.sheetfront.com/login. API requests use Sheetfront API keys from the dashboard and send `Authorization: Bearer `. ## Examples ```bash curl "https://api.sheetfront.com/api/v1/sheets/$CONNECTION_ID/data?page=1&page_size=50" \ -H "Authorization: Bearer $SHEETFRONT_API_KEY" ```