search
Search transcripts across videos
Case-insensitive substring search across transcript segments in the caller’s organization. Filters compose (AND): pass video_id to limit to one video, deal_id to limit to a deal’s videos, or both (segment must satisfy every filter). Results ordered by video creation time (newest first), then by segment start within each video.
GET
/
v1
/
search
/
transcripts
Search transcripts across videos
curl --request GET \
--url https://platform.lymo.jp/v1/search/transcripts \
--header 'Authorization: Bearer <token>'import requests
url = "https://platform.lymo.jp/v1/search/transcripts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://platform.lymo.jp/v1/search/transcripts', 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://platform.lymo.jp/v1/search/transcripts",
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://platform.lymo.jp/v1/search/transcripts"
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://platform.lymo.jp/v1/search/transcripts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.lymo.jp/v1/search/transcripts")
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{
"data": [
{
"id": "<string>",
"text": "<string>",
"start": 123,
"end": 123,
"video_id": "<string>",
"speaker": "<string>",
"speaker_role": "<string>",
"video_title": "<string>",
"deal_id": "<string>"
}
],
"meta": {
"request_id": "req_abc123",
"total_matches": 123,
"truncated": true
}
}{
"error": {
"code": "not_found",
"message": "Video not found"
},
"meta": {
"request_id": "req_abc123"
}
}{
"error": {
"code": "not_found",
"message": "Video not found"
},
"meta": {
"request_id": "req_abc123"
}
}承認
Unkey API key (prefix lymo_)
クエリパラメータ
Search query (case-insensitive substring match)
Minimum string length:
1Restrict results to a single video
Restrict results to videos belonging to this deal
Maximum number of items to return (1-100)
必須範囲:
1 <= x <= 100このページは役に立ちましたか?
⌘I
Search transcripts across videos
curl --request GET \
--url https://platform.lymo.jp/v1/search/transcripts \
--header 'Authorization: Bearer <token>'import requests
url = "https://platform.lymo.jp/v1/search/transcripts"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://platform.lymo.jp/v1/search/transcripts', 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://platform.lymo.jp/v1/search/transcripts",
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://platform.lymo.jp/v1/search/transcripts"
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://platform.lymo.jp/v1/search/transcripts")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://platform.lymo.jp/v1/search/transcripts")
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{
"data": [
{
"id": "<string>",
"text": "<string>",
"start": 123,
"end": 123,
"video_id": "<string>",
"speaker": "<string>",
"speaker_role": "<string>",
"video_title": "<string>",
"deal_id": "<string>"
}
],
"meta": {
"request_id": "req_abc123",
"total_matches": 123,
"truncated": true
}
}{
"error": {
"code": "not_found",
"message": "Video not found"
},
"meta": {
"request_id": "req_abc123"
}
}{
"error": {
"code": "not_found",
"message": "Video not found"
},
"meta": {
"request_id": "req_abc123"
}
}