Accessing Blueprint Portal's API

Once your organization has been approved for API access, company administrators may create and manage their API Access Tokens from within Portal. You may also request an Access Token from the Blueprint team.


Creating an Access Token as a Company Administrator

  1. Navigate to your Settings page under your name in the header bar.
  2. Select your company from the dropdown and navigate to the API tab. Click New Token, provide a name and agree to the terms.
  3. Copy and securely store your API Access Token


Using your Access Token

Once you have retrieved a Token, you may use it to make authorized Requests.

curl --request GET \
  --url https://app.blueprinttitle.com/public/api/v5 \
  --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."
}