You must be a qualified Client and retrieve an Access Token from the Blueprint App in order to authenticate to our Client API. Once you have retrieved a Token, you may use it to make authorized Requests.

curl --request GET \
  --url https://app.blueprinttitle.com/public/api/v4.0.0 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer 2|fa1CXjgluUt5ma9o01A79LQC9N1VkKQDopT6uVhr'

You will receive a JSON Response

{
    "message": "We did it, Marjorie. We made an API..." 
}

If your Token is invalid, you will receive a 401: Unauthenticated response

{
  "message": "Please login to proceed."
}