TikTok Song API
curl --request POST \
--url https://api.socq.ai/v1/tiktok/song \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"music_id": "<string>",
"callback_url": "<string>",
"url": "<string>"
}
'import requests
url = "https://api.socq.ai/v1/tiktok/song"
payload = {
"music_id": "<string>",
"callback_url": "<string>",
"url": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({music_id: '<string>', callback_url: '<string>', url: '<string>'})
};
fetch('https://api.socq.ai/v1/tiktok/song', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.socq.ai/v1/tiktok/song",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'music_id' => '<string>',
'callback_url' => '<string>',
'url' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.socq.ai/v1/tiktok/song"
payload := strings.NewReader("{\n \"music_id\": \"<string>\",\n \"callback_url\": \"<string>\",\n \"url\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.socq.ai/v1/tiktok/song")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"music_id\": \"<string>\",\n \"callback_url\": \"<string>\",\n \"url\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.socq.ai/v1/tiktok/song")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"music_id\": \"<string>\",\n \"callback_url\": \"<string>\",\n \"url\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"code": 200,
"data": {
"task_id": "<string>",
"status": "<string>",
"created_time": "<string>"
}
}{
"code": 422,
"error": {
"message": "<string>",
"type": "<string>",
"details": {}
}
}TikTok Song
Collect public TikTok sound and music metadata by clip ID or URL.
POST
/
v1
/
tiktok
/
song
TikTok Song API
curl --request POST \
--url https://api.socq.ai/v1/tiktok/song \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"music_id": "<string>",
"callback_url": "<string>",
"url": "<string>"
}
'import requests
url = "https://api.socq.ai/v1/tiktok/song"
payload = {
"music_id": "<string>",
"callback_url": "<string>",
"url": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({music_id: '<string>', callback_url: '<string>', url: '<string>'})
};
fetch('https://api.socq.ai/v1/tiktok/song', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.socq.ai/v1/tiktok/song",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'music_id' => '<string>',
'callback_url' => '<string>',
'url' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.socq.ai/v1/tiktok/song"
payload := strings.NewReader("{\n \"music_id\": \"<string>\",\n \"callback_url\": \"<string>\",\n \"url\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.socq.ai/v1/tiktok/song")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"music_id\": \"<string>\",\n \"callback_url\": \"<string>\",\n \"url\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.socq.ai/v1/tiktok/song")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"music_id\": \"<string>\",\n \"callback_url\": \"<string>\",\n \"url\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"code": 200,
"data": {
"task_id": "<string>",
"status": "<string>",
"created_time": "<string>"
}
}{
"code": 422,
"error": {
"message": "<string>",
"type": "<string>",
"details": {}
}
}TikTok Song
Collect detailed public TikTok sound and music metadata by clip ID or sound URL.{
"music_id": "7439295283975702544"
}
Use with MCP
| Interface | Value |
|---|---|
| REST | POST /v1/tiktok/song |
| Compact MCP | socq_execute with endpoint: "tiktok/song" |
| Typed MCP | socq_tiktok_song |
| Exact-tool URL | https://api.socq.ai/mcp?tools=tiktok_song |
| CLI | socq tiktok song |
input object for socq_execute, or pass the same fields directly to the typed tool. Typed tools also accept _wait_seconds, _result_limit, and _idempotency_key.
A successful submission returns a
task_id. Continue with socq_get_task until the task succeeds, then read normalized records from results.items.Result Fields
Task results use the stable SocQ fields below. Source-specific field names and formats are normalized without inferring or enriching values that the source did not provide. To request a smaller field set, usefields for MCP queries, _result_fields for typed tools, or --result-fields in the CLI. Declared fields remain present when their value is null.
| Field | Type | Nullable | Description |
|---|---|---|---|
id | string | Yes | Unique identifier for this result item. |
platform | string | No | Platform the result belongs to, such as instagram or linkedin. |
resource | string | No | SocQ resource represented by the result, such as videos or comments. |
type | string | No | Category of the result item, such as video, post, or comment. |
url | string | Yes | Public URL of the result item when available. |
published_at | string | Yes | Time the source item was published, in ISO 8601 format when available. |
collected_at | string | No | Time SocQ collected or processed this result, in ISO 8601 format. |
name | string | Yes | Title of the sound or song. |
text | string | Yes | Display title of the sound. |
author | object | Yes | Author or publisher of the content. |
author.id | string | Yes | Unique identifier of the author. |
author.username | string | Yes | Public username or handle of the account. |
author.name | string | Yes | Display name of the author. |
author.url | string | Yes | Public URL of the author when available. |
author.avatar_url | string | Yes | URL of the account avatar image. |
author.is_verified | boolean | Yes | Whether the account is verified on the platform. |
author.is_private | boolean | Yes | Whether the account is private. |
cover_url | string | Yes | URL of the cover image. |
duration_seconds | number | Yes | Duration in seconds. |
audio | object | Yes | Playable preview of the sound. |
audio.id | string | Yes | Identifier of the audio or music track. |
audio.title | string | Yes | Title of the audio or music track. |
audio.artist | string | Yes | Name of the audio artist or creator. |
audio.url | string | Yes | URL of the audio or music track when available. |
metrics | object | Yes | Counters and measurements available for the result item. |
metrics.videos_count | integer | Yes | Number of videos that use this sound. |
Completed Task Response
{
"code": 200,
"data": {
"task_id": "A1B2C3D4E5F6G7H8",
"status": "succeeded",
"public_id": "tiktok/song",
"result_count": 1,
"credits_amount": 0.5,
"results": {
"limit": 1,
"next_cursor": null,
"has_more": false,
"schema_id": "music",
"schema_version": "1.0",
"items": [
{
"id": "7439295283975702544",
"platform": "tiktok",
"resource": "song",
"type": "music",
"url": "https://www.tiktok.com/music/luther-7439295283975702544?_r=1&sharer_language=en&source=h5_m&u_code=f117aka677jbg0&_d=f117ab8kmc1a35&share_music_id=7439295283975702544",
"published_at": "2024-11-22T23:15:12Z",
"collected_at": "2026-09-12T07:00:00Z",
"name": "luther",
"text": "luther",
"author": {
"id": "7486547994222740523",
"username": "sza",
"name": "SZA",
"url": "https://www.tiktok.com/@sza",
"avatar_url": "https://p16-common-sign.tiktokcdn-eu.com/tos-maliva-avt-0068/42b31651a14a0f2151814dcbace36525~tplv-tiktokx-cropcenter:168:168.webp?dr=10397&refresh_token=0b46c746&x-expires=1789279200&x-signature=GTH4ZSqgLr9oVvqKbH5yrs65DQ8%3D&t=4d5b0474&ps=13740610&shp=544a444f&shcp=f6441914&idc=no1a",
"is_verified": null,
"is_private": null
},
"cover_url": "https://p16-sg.tiktokcdn.com/aweme/200x200/tos-alisg-v-2774/ooCBAEtE4DqIfBLAjADiRIneQATZEYFgAh8tm8.jpeg",
"duration_seconds": 59.0,
"audio": {
"id": "7439295283975702544",
"title": "luther",
"artist": "SZA",
"url": "https://sf19-music.tiktokcdn-eu.com/obj/tos-alisg-ve-2774/o8f9CfEFDdCEDUAq6gDqgOY4gQNfJHzxhF2ayE"
},
"metrics": {
"videos_count": 1424364
}
}
]
}
}
}
Authorizations
bearerAuthapiKeyAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json

