3.2 Hasura Data API

Ankur Pandey
2 min readJun 28, 2017

--

Postman
It is a tool for testing API so that they can be integrated with the application later.

Method for Data API Queries: POST

URL for Data API queries: https://data.cockerel94.hasura-app.io/v1/query

Header for Anonymous:
Content-type : application/json

Header for logged in user:
Content-type : application/json
Authorization: Bearer

Ways to communicate with Hasura Data API:
1. From front-end using external end point
2. From back-end using internal end point

Sample data API queries that you made via Postman:

New User Registration allowed by all user
Insert in Result table allowed by admin only
Select queries on Result table allowed by all type of users (View Result)

--

--