{ "info": { "_postman_id": "938d5b9a-d9f1-4c92-8c84-2741446e0ddc", "name": "AssemblyAI", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { "name": "Create trancript from audio url", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n\t\"audio_src_url\": \"https://s3-us-west-2.amazonaws.com/assemblyai-test-audio-data/TED+Talks/Al+Gore/17.wav\"\n}" }, "url": { "raw": "https://api.assemblyai.com/transcript", "protocol": "https", "host": [ "api", "assemblyai", "com" ], "path": [ "transcript" ] } }, "response": [] }, { "name": "Retrieve trancript", "request": { "method": "GET", "header": [], "body": { "mode": "raw", "raw": "" }, "url": { "raw": "https://api.assemblyai.com/transcript/757000", "protocol": "https", "host": [ "api", "assemblyai", "com" ], "path": [ "transcript", "757000" ] } }, "response": [] }, { "name": "Create model from phrases", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n\t\"phrases\": [\n\t\t\"hello foobar\",\n\t\t\"goodnight foobar\",\n\t\t\"foobar turn off the lights\",\n\t\t\"foobar turn on the lights\"\n\t]\n}" }, "url": { "raw": "https://api.assemblyai.com/model", "protocol": "https", "host": [ "api", "assemblyai", "com" ], "path": [ "model" ] } }, "response": [] }, { "name": "Retrieve model", "request": { "method": "GET", "header": [], "body": { "mode": "raw", "raw": "" }, "url": { "raw": "https://api.assemblyai.com/model/54548", "protocol": "https", "host": [ "api", "assemblyai", "com" ], "path": [ "model", "54548" ] } }, "response": [] }, { "name": "Create trancript from audio url with model", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n\t\"audio_src_url\": \"https://s3-us-west-2.amazonaws.com/assemblyai-test-audio-data/TED+Talks/Al+Gore/17.wav\",\n\t\"model_id\": 54548\n}" }, "url": { "raw": "https://api.assemblyai.com/transcript", "protocol": "https", "host": [ "api", "assemblyai", "com" ], "path": [ "transcript" ] } }, "response": [] } ], "auth": { "type": "bearer", "bearer": [ { "key": "token", "value": "your-secret-api-token", "type": "string" } ] }, "event": [ { "listen": "prerequest", "script": { "id": "42c3629b-7d82-420d-a79c-96e93996d949", "type": "text/javascript", "exec": [ "" ] } }, { "listen": "test", "script": { "id": "077d5b56-c2f3-4922-8224-992e9891374e", "type": "text/javascript", "exec": [ "" ] } } ] }