SK Telecom A.X TTS API

Korean text-to-speech built on SK Telecom's own DNN speech-synthesis models and voice database, operated by SKT's speech synthesis technology team. Three documented operations — list TTS models, list the voices a model supports, and synthesize speech (with an optional timestamped variant). Authenticated with an appKey header issued from the SK open API dashboard.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sk-telecom-ax-tts-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sk-telecom-ax-tts-openapi.json Raw ↑
{"openapi":"3.1.0","info":{"title":"A.X tts","version":"1.0"},"servers":[{"url":"https://apis.openapi.sk.com/axtts"}],"components":{"securitySchemes":{"sec0":{"type":"apiKey","in":"header","name":"appKey","x-default":"YEWVxfrK4j8xTNQZURJ4z1Te4JTZs26v45fgmfn7"}}},"security":[{"sec0":[]}],"paths":{"/voice":{"get":{"summary":"Get Voices","description":"해당 모델에서 지원하고 있는 화자 정보를 확인할 수 있고, 모델 Name은 <a href=\"https://ax-tts-skopenapi.readme.io/reference/tts-model-list-1\">모델 List</a>에서 확인 가능합니다.","operationId":"get-voices","parameters":[{"name":"model","in":"query","description":"음성합성 Model","required":true,"schema":{"type":"string","enum":["axtts-2-6","axtts-2-6-ainews","axtts-2-1","axtts-2-1-dialect"],"default":"axtts-2-6"}},{"name":"appKey","in":"header","description":"<a href=\"https://openapi.sk.com/mypage/project/\" target=\"_blank\">마이페이지>앱</a>>앱키(appKey) 탭에서 확인 가능","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"200","content":{"text/plain":{"examples":{"Result":{"value":"{}"}},"schema":{"type":"object","properties":{}}}}},"400":{"description":"400","content":{"text/plain":{"examples":{"Result":{"value":"{}"}},"schema":{"type":"object","properties":{}}}}}},"deprecated":false}},"/tts":{"post":{"summary":"Text-to-Speech (TTS)","description":"","operationId":"text-to-speech-tts","parameters":[{"name":"accept","in":"header","description":"sformat에 따른 설정 필요 - wav: audio/wav, pcm: application/octet-stream, opus: audio/ogg, mp3: audio/mpeg","schema":{"type":"string","default":"audio/wav"}},{"name":"appKey","in":"header","description":"<a href=\"https://openapi.sk.com/mypage/project/\" target=\"_blank\">마이페이지>앱</a>>앱키(appKey) 탭에서 확인 가능","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","required":["model","voice","text"],"properties":{"model":{"type":"string","description":"음성합성 Model Name","enum":["axtts-2-6","axtts-2-6-ainews","axtts-2-1","axtts-2-1-dialect"]},"voice":{"type":"string","description":"합성 보이스 설정 - 음성합성 지원 보이스 참조","default":"aria"},"text":{"type":"string","description":"음성 생성을 위한 입력 문장 - 300자 미만 지원","default":"음성합성 테스트입니다."},"speed":{"type":"string","description":"음성 발화 속도 조정 - Range: [0.5, 2.0]","default":"1"},"sr":{"type":"integer","description":"샘플링 레이트(Hz) 조정 - [8000, 16000, 22050]","default":22050,"format":"int32"},"sformat":{"type":"string","description":"음성 출력 포맷 지정 - [wav, pcm, opus, mp3]","default":"wav","enum":["wav","pcm","opus","mp3"]},"clientId":{"type":"string","description":"API 사용 서비스명"}}}}}},"responses":{"200":{"description":"200","content":{"application/json":{"examples":{"Result":{"value":"{}"}},"schema":{"type":"object","properties":{}}}}},"400":{"description":"400","content":{"text/plain":{"examples":{"Result":{"value":"{}"}},"schema":{"type":"object","properties":{}}}}}},"deprecated":false}},"/segmentation":{"post":{"summary":"Text-to-Speech with Timestamp","description":"음성합성 + Timestamp API","operationId":"text-to-speech-with-timestamp","parameters":[{"name":"accept","in":"header","schema":{"type":"string","default":"application/json"}},{"name":"appKey","in":"header","description":"<a href=\"https://openapi.sk.com/mypage/project/\" target=\"_blank\">마이페이지>앱</a>>앱키(appKey) 탭에서 확인 가능","schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"type":"object","required":["model","voice","text"],"properties":{"model":{"type":"string","description":"음성합성 Model Name","default":"axtts-2-6"},"voice":{"type":"string","description":"합성 보이스 설정 - 음성합성 지원 보이스 참조","default":"aria"},"text":{"type":"string","description":"음성 생성을 위한 입력 문장 - 300자 미만 지원","default":"음성합성 테스트입니다."},"speed":{"type":"string","description":"음성 발화 속도 조정 - Range: [0.5, 2.0]","default":"1"},"sr":{"type":"integer","description":"샘플링 레이트(Hz) 조정 - [8000, 16000, 22050]","default":22050,"format":"int32"},"sformat":{"type":"string","description":"음성 출력 포맷 지정 - [wav, pcm, opus, mp3]","default":"wav","enum":["wav","pcm","opus","mp3"]},"clientId":{"type":"string","description":"API 사용 서비스명"}}}}}},"responses":{"200":{"description":"200","content":{"application/json":{"examples":{"Result":{"value":"{}"}},"schema":{"type":"object","properties":{}}}}},"400":{"description":"400","content":{"text/plain":{"examples":{"Result":{"value":"{}"}},"schema":{"type":"object","properties":{}}}}}},"deprecated":false}}},"x-readme":{"headers":[],"explorer-enabled":true,"proxy-enabled":true},"x-readme-fauxas":true}