Skip to main content
GET
/
api
/
data-readiness
/
glossary
/
terms
List glossary terms
curl --request GET \
  --url https://api.example.com/api/data-readiness/glossary/terms \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "term": "<string>",
      "definition": "<string>",
      "domain": "<string>",
      "status": "<string>",
      "owner": "<string>",
      "last_updated": "<string>",
      "version": "<string>",
      "related_terms": [
        "<string>"
      ],
      "usage_count": 0,
      "data_sources": [
        "<string>"
      ],
      "source_schema": "<string>",
      "source_reference_file": "<string>",
      "conflict_reason": "<string>",
      "is_generated": false,
      "custom_tags": [
        "<string>"
      ],
      "resource_uri": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "per_page": 123,
    "total": 123,
    "total_pages": 123,
    "has_next": true,
    "has_prev": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

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

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Include the token in the Authorization header as: Authorization: Bearer <token>. The JWT must contain valid client_id, and project_id claims for tenant isolation and SDK routing.

Query Parameters

letter
string | null

Filter by first letter (A-Z or # for non-alpha)

Maximum string length: 1
status
string | null

Filter by status: Verified, Unverified, Conflicting

q
string | null

Search term or definition (case-insensitive)

Minimum string length: 1
source
string | null

Filter by source: 'Agentically Generated' or 'Manually Added'

tag
string | null

Filter by custom tag

page
integer
default:1

Page number (1-based)

Required range: x >= 1
page_size
integer
default:20

Items per page

Required range: 1 <= x <= 100

Response

Successful Response

Paginated list of glossary terms.

data
GlossaryTermResponse · object[]
required

Page of glossary terms

pagination
PaginationMeta · object
required

Pagination metadata