Quickstart

Get up and running in under 5 minutes.

1. Create an API key

Go to app.briehq.com → Settings → Integrations → API Keys and create a PAT with slices:read and workspaces:read scopes.

2. Test your key

curl https://api.briehq.com/v1/me \
  -H "Authorization: Bearer brie_pat_your_key_here"

You should see your profile:

{
  "data": {
    "id": "usr_abc123",
    "firstName": "Jane",
    "lastName": "Doe",
    "email": "[email protected]",
    "createdAt": "2026-01-15T10:30:00.000Z"
  }
}

3. List your workspaces

curl https://api.briehq.com/v1/workspaces \
  -H "Authorization: Bearer brie_pat_your_key_here"

4. List bug reports

curl "https://api.briehq.com/v1/slices?workspaceId=YOUR_WORKSPACE_ID" \
  -H "Authorization: Bearer brie_pat_your_key_here"

5. Create a bug report

curl -X POST https://api.briehq.com/v1/slices \
  -H "Authorization: Bearer brie_pat_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "summary": "Login button broken on Safari",
    "description": "Clicking the login button does nothing on Safari 17.",
    "workspaceId": "YOUR_WORKSPACE_ID",
    "priority": "HIGH"
  }'

What's next?