Search Wiki Mentions
curl --request GET \
--url https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"items": [
{
"guid": "mention_abc123",
"pageGuid": "page_abc123",
"noteId": 123,
"kind": "EXPLICIT",
"extractedText": "Alice Kim mentioned in our meeting",
"sourceUserId": 789,
"createdAt": "2025-01-15T10:30:00Z",
"score": 0.92,
"paragraphId": 456,
"paragraphUuid": "para_uuid_123"
}
]
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}{
"error_code": "WIKI_PLAN_REQUIRED",
"message": "위키 기능은 Pro 이상 요금제에서 사용할 수 있어요.",
"status_code": 402,
"success": false,
"current_plan": "Lite",
"required_plans": [
"pro",
"max",
"team",
"enterprise"
],
"action_url": "https://tiro.ooo/#pricing"
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}Keyword-required search for mentions (references in notes). Returns ranked mentions with source context.
Returns 402 if wiki is not plan-eligible or not activated.
GET
/
v1
/
external
/
workspaces
/
{workspaceGuid}
/
wiki
/
search
/
mentions
Search Wiki Mentions
curl --request GET \
--url https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tiro.ooo/v1/external/workspaces/{workspaceGuid}/wiki/search/mentions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"items": [
{
"guid": "mention_abc123",
"pageGuid": "page_abc123",
"noteId": 123,
"kind": "EXPLICIT",
"extractedText": "Alice Kim mentioned in our meeting",
"sourceUserId": 789,
"createdAt": "2025-01-15T10:30:00Z",
"score": 0.92,
"paragraphId": 456,
"paragraphUuid": "para_uuid_123"
}
]
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}{
"error_code": "WIKI_PLAN_REQUIRED",
"message": "위키 기능은 Pro 이상 요금제에서 사용할 수 있어요.",
"status_code": 402,
"success": false,
"current_plan": "Lite",
"required_plans": [
"pro",
"max",
"team",
"enterprise"
],
"action_url": "https://tiro.ooo/#pricing"
}{
"error": {
"code": 404018,
"errorType": "not_found",
"message": "No team found for user #217",
"detail": null
}
}인증
API key in format {id}.{secret}
경로 매개변수
Workspace GUID
쿼리 매개변수
Search keyword (required)
Result size (default 20, max 100)
필수 범위:
1 <= x <= 100응답
Ranked list of matching mentions
Ranked list of matching mentions
Show child attributes
Show child attributes
⌘I