메인 콘텐츠로 건너뛰기
GET
/
v1
/
external
/
notes
List Notes
curl --request GET \
  --url https://api.tiro.ooo/v1/external/notes \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.tiro.ooo/v1/external/notes"

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/notes', 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/notes",
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/notes"

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/notes")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.tiro.ooo/v1/external/notes")

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
{
  "content": [
    {
      "guid": "note-abc123-def456",
      "title": "Weekly Team Meeting",
      "createdAt": "2024-01-15T10:30:00Z",
      "updatedAt": "2024-01-15T11:45:00Z",
      "sourceType": "live-voice",
      "recordingStartAt": "2024-01-15T10:30:10Z",
      "recordingEndAt": "2024-01-15T11:30:15Z",
      "recordingDurationSeconds": 3605,
      "transcribeLocale": "ko_KR",
      "translateLocale": "en_US",
      "webUrl": "https://tiro.ooo/n/abc123def456",
      "collaborators": [],
      "participants": [
        {
          "name": "Alice Kim",
          "email": "alice@example.com"
        },
        {
          "name": "Bob Park",
          "email": null
        }
      ]
    },
    {
      "guid": "note-def456-ghi789",
      "title": "Product Planning Session",
      "createdAt": "2024-01-14T14:00:00Z",
      "updatedAt": "2024-01-14T15:30:00Z",
      "sourceType": "live-voice",
      "recordingStartAt": "2024-01-14T14:00:05Z",
      "recordingEndAt": "2024-01-14T15:30:20Z",
      "recordingDurationSeconds": 5415,
      "transcribeLocale": "en_US",
      "translateLocale": "ko_KR",
      "webUrl": "https://tiro.ooo/n/def456ghi789",
      "collaborators": [],
      "participants": []
    }
  ],
  "nextCursor": "cursor_string"
}

인증

Authorization
string
header
필수

API key in format {id}.{secret}

쿼리 매개변수

cursor
string

Cursor for the next page

size
integer
기본값:100

Page size (default 100)

필수 범위: 1 <= x <= 1000
keyword
string

Optional keyword. When present, results are reordered by full-text relevance and the response is bounded by what the search index returns; nextCursor is null in this mode. Requires a user-scoped API key.

folderId
string

Restrict to notes inside a specific folder. Includes descendant folders (recursive). For a team API key, the folder must belong to the team; otherwise the call returns 404.

createdAtFrom
string<date-time>

ISO 8601 datetime — return only notes with createdAt >= this value.

createdAtTo
string<date-time>

ISO 8601 datetime — return only notes with createdAt < this value.

응답

List of notes

content
object[]
필수

Array of items for current page

nextCursor
string | null
필수

Cursor for next page, null if last page

예시:

"opaque-cursor-string"