書き起こしAPIでは、音声ファイルをアップロードし、書き起こしを開始し、その結果を取得することができます。
辞書APIでは、書き起こし精度を高めるために、辞書を作成し、単語を登録することができます。
書き起こしAPIでは、音声ファイルをアップロードし、書き起こしを開始し、その結果を取得することができます。
辞書APIでは、書き起こし精度を高めるために、辞書を作成し、単語を登録することができます。
音声ファイルの言語コードを指定する。(例: 'ja')
複数の言語コードは配列で指定できる。(例: ['en', 'ja'])
詳細の言語コードは、FAQの対応言語を参照。
書き起こしモデル(任意、未指定時は、default
) 話者分離強化モデルの場合は、diarization-high
を入力
curl -i -X POST \
https://api.mocomoco.ai/api/v1/transcriptions/upload \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"filename": "string",
"dictionary_id": "string",
"language": null,
"transcription_model": "default",
"words": [
{
"word": "string",
"reading": "string"
}
]
}'
{ "transcription_id": "string", "dictionary_id": "string", "team_id": "string", "audio_upload_url": "string", "transcription_model": "string" }
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/transcribe' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "dictionary_id": "string", "team_id": "string", "name": "string", "transcription_path": "string", "audio_path": "string", "transcription_model": "string", "status": "string", "speaking_duration": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/transcriptions?page=1' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
[ { "transcription_id": "string", "dictionary_id": "string", "team_id": "string", "name": "string", "transcription_path": "string", "audio_path": "string", "transcription_model": "string", "status": "string", "speaking_duration": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } ]
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "dictionary_id": "string", "team_id": "string", "name": "string", "transcription_path": "string", "audio_path": "string", "transcription_model": "string", "status": "string", "speaking_duration": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X DELETE \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/review' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "reviewed_text": "string" }
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/review' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "reviewed_text": "string" }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/summary' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "summarized_text": "string" }
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/summary' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "summarized_text": "string" }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/emotion' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "emotions": [] }
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/emotion' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "emotions": [] }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/translate' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "translated_text": "string" }
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/translate' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "translated_text": "string" }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/dictionaries?page=1' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
[ { "dictionary_id": "string", "team_id": "string", "name": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } ]
curl -i -X POST \
https://api.mocomoco.ai/api/v1/dictionaries \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "string",
"words": [
{
"word": "string",
"reading": "string"
}
],
"is_temporary": false
}'
{ "dictionary_id": "string", "team_id": "string", "name": "string", "words": [ { … } ], "is_temporary": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "dictionary_id": "string", "team_id": "string", "name": "string", "words": [ { … } ], "is_temporary": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X PATCH \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "string",
"is_temporary": true
}'
{ "dictionary_id": "string", "team_id": "string", "name": "string", "words": [ { … } ], "is_temporary": true, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X DELETE \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}/words' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"word": "string",
"reading": "string"
}'
{ "word_id": "string", "dictionary_id": "string", "word": "string", "reading": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}/words/bulk' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '[
{
"word": "string",
"reading": "string"
}
]'
[ { "word_id": "string", "dictionary_id": "string", "word": "string", "reading": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } ]
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}/words/{word_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "word_id": "string", "dictionary_id": "string", "word": "string", "reading": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X DELETE \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}/words/{word_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'