Project
Get project
Project
Get project
Get project by project id provided.
GET
/
v2
/
projects
/
{project_id}
curl --request GET \
--url https://api.rask.ai/v2/projects/{project_id} \
--header 'Authorization: Bearer <token>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"source_type": "youtube",
"status": "created",
"status_updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"cover": "<string>",
"src_lang": "<string>",
"dst_lang": "<string>",
"num_speakers": 123,
"source_url": "<string>",
"duration": 123,
"original_duration": 123,
"glossary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"glossary_version": 123,
"original_video": "<string>",
"transcript_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"voiceover": "<string>",
"translated_video": "<string>",
"translated_audio": "<string>",
"voice": {},
"translation_srt_path": "<string>",
"translation_vtt_path": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the project created
Response
200
application/json
Successful Response
The response is of type object
.
curl --request GET \
--url https://api.rask.ai/v2/projects/{project_id} \
--header 'Authorization: Bearer <token>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"source_type": "youtube",
"status": "created",
"status_updated_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"cover": "<string>",
"src_lang": "<string>",
"dst_lang": "<string>",
"num_speakers": 123,
"source_url": "<string>",
"duration": 123,
"original_duration": 123,
"glossary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"glossary_version": 123,
"original_video": "<string>",
"transcript_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"voiceover": "<string>",
"translated_video": "<string>",
"translated_audio": "<string>",
"voice": {},
"translation_srt_path": "<string>",
"translation_vtt_path": "<string>"
}