Get up and running with the Neurons API!

This page contains instructions that help developers onboard themselves and get started with using the Neurons API quickly.

Prerequisites

In order to be able to use the Neurons API, the only thing you need is an API key, which you can request from your Customer Success Manager.

Use your API key to authenticate your API requests. Use the API key as the value for the "X-API-Key" header field in your requests. For demonstrative purposes, here's a cURL example:

# Uploads and predicts an image 
curl -X 'POST' \
     'https://api.neuronsinc.com/predict/v2/images' \
     --header 'X-API-Key: YOUR_API_KEY' \
     --header 'accept: application/json' \
     --header 'content-type: multipart/form-data'