Confirming access

The Fix6 API helps you create, manage, and monitor projects that you have with Fix6 using your own tools and workflows. Access to the API is granted to Fix6 customers through the use of an API key. You can inquire about receiving a key by contacting us at api@fix6.io.

Once you have received your API key, you can quickly check to make sure that your account is active with our /api_status endpoint.

api_status.py
import requests

API_URL = "https://api.fix6.io"
API_KEY = your_api_key

headers = {"Content-type": "application/json", "x-api-key": API_KEY}
response = requests.get(f"{API_URL}/api_status", headers=headers)

If your account is active, you should get a response like this:

{
  "message": "API is responsive"
  "user_id": "<your-user-id>",
}