Skip to content

API Reference

Reference for integrating with Gridy API endpoints

API endpoints

For documentation on specific API endpoints, use the navigation menu.

API Access

To gain access to the Gridy API, create an account here. Once you’ve completed the signup process and accepted our terms, we’ll provide an API UserID and Secret Key.

API Responses

The Gridy API is JSON over HTTP. Requests are POST requests, and responses are JSON, with errors indicated in response bodies as negative status values (all application-level errors return a HTTP 400 status code). All responses come as standard JSON. The Gridy API is served over HTTPS TLS v1.2+; HTTPS with TLS versions below 1.2 are not supported. All requests must include a Content-Type of application/json and the body must be valid JSON.

Example
{ 
 "id": "QCZEQ1730079228140"
 "utctime": "2024-10-28T01:33:48.922799Z"
 "code": 400 
 "status":-5075,
 "message": "BAD REQUEST :- PARSING CHALLENGE BODY JSON FAILED"
 "more info": "https://support.gridy.io/errors?code=-5075"
}

API Security

All Gridy API endpoints use a Hash-based Message Authentication Code (HMAC) with your API credentials to add an HMAC-SHA512 signature to the HTTP authorization header of each API request. See Authentication for more details.

Example
Authorization: gridy-hmac: apiuser=<Your API UserID>,signedheaders=x-gridy-utctime;x-gridy-cnonce,algorithm=gridy-hmac512,signature=9f2571a0bdc0bcac09f26f340acd2f935bf5e4d5869d4089cbdff3e3d94a43d9c39ab7b995b

API Support

Every Gridy API response includes an id, in the response body. When contacting support, always include the id regarding a specific API call.

API Hosts

1. https://api.gridy.io
2. https://uat.gridy.io

Gridy has two environments: UAT and Live. To get a UAT account, please submit a request to the email address provided in your registration email.

API Status

API status is available at https://gridy.io/api/status

OpenAPI Definition

OpenAPI definition file is available at https://gridy.io/api/openapi.json

Postman collection

The Postman collection is a tool for exploring Gridy API endpoints without writing code. The Postman collection provides pre-formatted requests for Gridy's API endpoints. To get started, check out the Gridy Postman Collection here

Client libraries

See the API Clients page for more information on Gridy's client libraries.