Hatch Apps Docs
HomePlatform
  • Welcome to Hatch Apps
  • Glossary
  • Use Cases
  • Sales Deck
  • Platform
    • Overview
    • Features
      • Home
      • Resources
      • Products
      • Marketplace
      • Deals
    • Support
      • Forum
      • Docs
      • Email support
      • In app support tickets
      • Enterprise SLA
      • Account Manager
    • Account
      • Payments
      • Team management
      • Multiplayer collaboration
      • SSO
      • Referral program
    • Security
  • Mobile App Builder
    • Overview
    • Components
      • Hatch Apps Components
      • Partner Components
    • Deployments
      • iOS App
      • Android App
  • API Builder
    • Overview
    • Getting started
      • Test your API
      • List data
      • Create new data
      • Get data
      • Update data
      • Delete data
      • Postman
      • Database View
    • Permissions
      • Admin
      • Authorized users
      • Specified users
      • Public access
    • Integrations
      • Zapier
  • API Tester
    • Overview
    • Test your API
  • Software insurance
    • Overview
    • Submit a claim
    • Redeem credit
  • Ecosystem
    • Overview
    • Marketplace guidelines
Powered by GitBook
On this page

Was this helpful?

  1. API Builder
  2. Getting started

List data

After configuring your endpoint, you'll see the list of methods to communicate with your endpoints. The first method is List Data. You can do this with a GET request as shown below. Replace your api path, your api key, and your end point with your API path, API key, and endpoint.

List all data

curl -H "Accept: application/json" \ -H "API-TOKEN: your api key" \ https://console.hatchapps.com/api/ your api path/your endpoint

Here's an example

curl -H "Accept: application/json" \ -H "API-TOKEN: 42270160762429063" \ https://console.hatchapps.com/api/notes/test

PreviousTest your APINextCreate new data

Last updated 2 years ago

Was this helpful?