List Subjects
Parameters
limit: Optional[int]
maximum100
minimum1
offset: Optional[int]
minimum0
Returns
List Subjects
from lark import Lark
client = Lark(
api_key="My API Key",
)
subjects = client.subjects.list()
print(subjects.has_more)
{
"has_more": true,
"subjects": [
{
"id": "subj_VyX6Q96h5avMho8O7QWlKeXE",
"created_at": "2025-11-01T00:00:00Z",
"email": "john.doe@example.com",
"external_id": "user_1234567890",
"metadata": {},
"name": "John Doe"
}
]
}Returns Examples
{
"has_more": true,
"subjects": [
{
"id": "subj_VyX6Q96h5avMho8O7QWlKeXE",
"created_at": "2025-11-01T00:00:00Z",
"email": "john.doe@example.com",
"external_id": "user_1234567890",
"metadata": {},
"name": "John Doe"
}
]
}