Quickstart

Start your interaction with Graphite API

Making an API Request

To interact with the Graphite Note API and perform predictions using a specific model, you need to make a POST request to the API endpoint. The following code snippet demonstrates how to make such a request using cURL - command line tool and a library that allows you to transfer data using various protocols, including HTTP, HTTPS.

curl -L -X POST "https://app.graphite-note.com/api/v1/prediction/model/[model-code]" \
-H "Authorization: Bearer [token]" \
-H "Content-Type: application/json" \
-d "[data]"

Last updated