Boards
Find similar board items
Server-side dedupe: match each candidate text against the board's items by normalized fingerprint + fuzzy token overlap, returning match pairs (and the misses).
Use before creating to avoid duplicates. Requires boards:read.
Request
curl -X POST "https://api.blueticks.co/v1/boards//items/find-similar" \ -H "Content-Type: application/json" \ -d '{ "candidates": [ { "text": "string" } ] }'{
"success": true,
"data": {
"matches": [
{
"candidate_index": 0,
"item_id": "string",
"text": "string",
"score": 0
}
],
"misses": [
0
]
}
}{
"success": false,
"error": {
"code": "string",
"message": "string",
"requestId": "string",
"details": [
{
"path": "string",
"code": "string",
"message": "string"
}
]
}
}Path Parameters
boardId*string
Request Body
application/json
Response
Response Body
application/json
application/json
Bulk upsert board items
Create or merge many items in one call.
Generate song
Submit a song generation to Suno from `lyrics` + `style`, optionally steering `vocalGender`, `weirdness`, `styleInfluence`, and a reference recording (`uploadId` from POST /v1/suno/uploads, with `audioInfluence` controlling how closely the cover follows it).