# Response > Status code is `200`. > > Response is __JSON Object__ that has a key, __`result`__. > > Data type of __`result`__ depends on APIs, but is the one of [JSON Object, JSON Array]. ## **Structure** | key | description | |--------------|-------------------------------------------------------------------| | __`result`__ | __JSON Object__ or __JSON Array__ depending on what you requested |
Example **An Example of `result` as JSON Object** > ```json > { > "result": { > "_id": "64a25c4fe671d3676a7a6332", > "audio_download_url": "https://cdn.typecast.ai/blah_the_audio_file_url_blah", > "text_count": 7, > "duration": 1.436734693877551, > "status": "done" > } > } > ``` **An Example of `result` as JSON Array** > ```json > { > "result": [ > { > "actor_id": "5c3c52c9ea9791000747155b", > "name": { > "en": "Byumsoo" > } > }, > { > "actor_id": "5c3c52c9ea9791000747155c", > "name": { > "en": "Camila" > } > } > ] > } > ```