Try our new Setup Skill to automatically integrate Hyperspell into your project
curl --request POST \
--url https://api.hyperspell.com/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"source": "<string>",
"messages": [
{
"resource_id": "<string>",
"message_id": "<string>",
"content": "<string>"
}
]
}
'{
"count": 123
}Ingest real-time messages for immediate full-text search.
curl --request POST \
--url https://api.hyperspell.com/messages \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"source": "<string>",
"messages": [
{
"resource_id": "<string>",
"message_id": "<string>",
"content": "<string>"
}
]
}
'{
"count": 123
}API Key or JWT User Token. If using an API Key, set the X-As-User header to act as a specific user. A JWT User Token is always scoped to a specific user.
Successful Response
Was this page helpful?