Techniques
List techniques
Returns reusable Flora techniques visible to the authenticated public API key. Use workspace_id, query, cursor, and limit to filter the catalog.
get/techniques
Query parameters
limitinteger
Maximum number of results to return
Maximum number of results to return
cursorstring
Opaque cursor for fetching the next page
Example:eyJvZmZzZXQiOjIwfQ
Opaque cursor for fetching the next page
querystring
Search query
Example:logo
Search query
workspace_idstring
Workspace identifier
Example:ws_abc123
Workspace identifier
Response
Techniques returned.
Example response
{
"techniques": [
{
"technique_id": "tech_abcd1234",
"name": "Editorial Image Grid",
"description": "Generate a cohesive editorial image grid.",
"inputs": [
{
"id": "prompt",
"name": "Prompt",
"description": "Describe the desired image.",
"specified_aspect_ratio": "1:1"
}
],
"outputs": [
{
"id": "prompt",
"name": "Prompt",
"description": "Describe the desired image.",
"specified_aspect_ratio": "1:1"
}
]
}
],
"meta": {
"next_cursor": "eyJvZmZzZXQiOjIwfQ"
}
}