Skip to main content
GET
https://api.usenotra.com
/
v1
/
brand-identities
/
{brandIdentityId}
Get a single brand identity
curl --request GET \
  --url https://api.usenotra.com/v1/brand-identities/{brandIdentityId} \
  --header 'Authorization: Bearer <token>'
{
  "brandIdentity": {
    "id": "<string>",
    "name": "<string>",
    "isDefault": true,
    "websiteUrl": "<string>",
    "companyName": "<string>",
    "companyDescription": "<string>",
    "toneProfile": "<string>",
    "customTone": "<string>",
    "customInstructions": "<string>",
    "audience": "<string>",
    "language": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>"
  },
  "organization": {
    "id": "<string>",
    "slug": "<string>",
    "name": "<string>",
    "logo": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.usenotra.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API key in the Authorization header as Bearer API_KEY.

Path Parameters

brandIdentityId
string
required
Minimum string length: 1
Pattern: ^[A-Za-z0-9_-]{1,100}$
Example:

"51c2f3aa-efdd-4e28-8e69-23fa2dfd3561"

Response

Brand identity fetched successfully

brandIdentity
object
required
organization
object
required
Last modified on May 20, 2026