Authentication
To use the SolidGrids API, you will need an access token. This access token can be obtained by following these steps:
Step 1: Request Access
Visit the following URL to request access to the SolidGrids API: https://app.solidgrids.com/login
Step 2: Verify Email
You will receive an email with a verification code. Once you have verified your email, you will be redirected to the SolidGrids app.
Step 3: Navigate to Settings
To obtain your access token, navigate to the settings page: https://app.solidgrids.com/app/settings
Step 4: Get Access Token
Your access token will be displayed at the top of the settings page. Copy the token and use it in your API requests.
Usage
The access token must be included in the Authorization header of all API requests. For example, in Python using the requests library:
headers = {
"Content-Type": "application/json",
"Authorization": SG_API_TOKEN,
}
where SG_API_TOKEN is your access token.