cURL
curl --request GET \
--url 'https://app.floral.so/api/v1/workspaces/acme-nordic/summaries/168' \
--header 'Authorization: Bearer $FLORAL_TOKEN'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.floral.so/api/v1/workspaces/{workspaceSlug}/summaries/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"summary": {
"appointmentDate": "2026-08-18T09:00:00.000Z",
"appointmentSubject": "Quarterly planning",
"company": {
"id": 42,
"name": "Acme Nordic",
"organizationNumber": "12345678"
},
"content": null,
"createdAt": "2026-08-15T10:00:00.000Z",
"durationSec": 2700,
"evidenceAudience": "CUSTOMER",
"id": 168,
"internalNotes": null,
"name": "Quarterly planning",
"status": "WAITING_APPROVAL",
"updatedAt": "2026-08-15T10:30:00.000Z",
"version": "v1.eyJpZCI6MTY4LCJyZXNvdXJjZSI6InN1bW1hcnkiLCJ2ZXJzaW9uIjoiMjAyNi0wOC0xNVQxMDozMDowMC4wMDBaIn0"
}
}{
"error": {
"code": "INVALID_INPUT",
"message": "The request contains invalid values.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "A valid bearer credential is required.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "FORBIDDEN",
"message": "The credential does not grant this operation.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The resource was not found.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Retry shortly.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}Summaries
Get a summary
Get validated structured meeting-summary content.
GET
https://app.floral.so
/
api
/
v1
/
workspaces
/
{workspaceSlug}
/
summaries
/
{id}
cURL
curl --request GET \
--url 'https://app.floral.so/api/v1/workspaces/acme-nordic/summaries/168' \
--header 'Authorization: Bearer $FLORAL_TOKEN'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.floral.so/api/v1/workspaces/{workspaceSlug}/summaries/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"summary": {
"appointmentDate": "2026-08-18T09:00:00.000Z",
"appointmentSubject": "Quarterly planning",
"company": {
"id": 42,
"name": "Acme Nordic",
"organizationNumber": "12345678"
},
"content": null,
"createdAt": "2026-08-15T10:00:00.000Z",
"durationSec": 2700,
"evidenceAudience": "CUSTOMER",
"id": 168,
"internalNotes": null,
"name": "Quarterly planning",
"status": "WAITING_APPROVAL",
"updatedAt": "2026-08-15T10:30:00.000Z",
"version": "v1.eyJpZCI6MTY4LCJyZXNvdXJjZSI6InN1bW1hcnkiLCJ2ZXJzaW9uIjoiMjAyNi0wOC0xNVQxMDozMDowMC4wMDBaIn0"
}
}{
"error": {
"code": "INVALID_INPUT",
"message": "The request contains invalid values.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "A valid bearer credential is required.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "FORBIDDEN",
"message": "The credential does not grant this operation.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The resource was not found.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Retry shortly.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}Authorizations
Authenticate with a workspace-pinned Floral personal access token.
Headers
Optional caller-generated correlation ID. Floral returns the effective value in X-Request-ID.
Required string length:
1 - 128Path Parameters
Slug of the workspace pinned to the credential.
Required string length:
1 - 100Pattern:
^[a-z0-9]+(?:-[a-z0-9]+)*$Stable numeric resource ID.
Required range:
x >= 1Response
Successful response
Show child attributes
Show child attributes
⌘I
