Intelligence TikTok pour marques, créateurs et équipes tendances MCP Server
Outils MCP pour TikTok
URL de base
https://mcp.pressmonitor.com/tiktok/v1 Authentification
Les appels MCP utilisent aussi un jeton Bearer avec des requetes JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN Decouvrir les outils
Commencez par lister les outils exposes par le serveur MCP.
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify({ jsonrpc: '2.0', id: 1, method: 'tools/list' }) }); console.log(await response.json()); import requests payload = { 'jsonrpc': '2.0', 'id': 1, 'method': 'tools/list' } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) challenge_info Challenge Info
Challenge Info
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| challenge_id | string | Oui | Challenge id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"challenge_info","arguments":{"challenge_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "challenge_info", "arguments": { "challenge_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "challenge_info", "arguments": { "challenge_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) challenge_posts Challenge Posts
Challenge Posts
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| challenge_id | string | Oui | Challenge id |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"challenge_posts","arguments":{"challenge_id":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "challenge_posts", "arguments": { "challenge_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "challenge_posts", "arguments": { "challenge_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) collection_info Collection Info
Collection Info
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| collection_id | string | Oui | Collection id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"collection_info","arguments":{"collection_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "collection_info", "arguments": { "collection_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "collection_info", "arguments": { "collection_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) collection_posts Collection Posts
Collection Posts
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| collection_id | string | Oui | Collection id |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"collection_posts","arguments":{"collection_id":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "collection_posts", "arguments": { "collection_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "collection_posts", "arguments": { "collection_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) download_music Download Music
Download Music
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| music_id | string | Oui | Music id |
| device_id | string | Non | Device id |
| format | string | Non | Format |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"download_music","arguments":{"music_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE","format":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "download_music", "arguments": { "music_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE", "format": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "download_music", "arguments": { "music_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE", "format": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) download_video Download Video
Download Video
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| aweme_id | string | Oui | Aweme id |
| device_id | string | Non | Device id |
| format | string | Non | Format |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"download_video","arguments":{"aweme_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE","format":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "download_video", "arguments": { "aweme_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE", "format": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "download_video", "arguments": { "aweme_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE", "format": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) effect_info Effect Info
Effect Info
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| effect_id | string | Oui | Effect id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"effect_info","arguments":{"effect_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "effect_info", "arguments": { "effect_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "effect_info", "arguments": { "effect_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) effect_posts Effect Posts
Effect Posts
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| effect_id | string | Oui | Effect id |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"effect_posts","arguments":{"effect_id":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "effect_posts", "arguments": { "effect_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "effect_posts", "arguments": { "effect_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) live_category Live Category
Live Category
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| device_id | string | Non | Device id |
| lang | string | Non | Lang |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"live_category","arguments":{"device_id":"SOME_STRING_VALUE","lang":"en"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "live_category", "arguments": { "device_id": "SOME_STRING_VALUE", "lang": "en" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "live_category", "arguments": { "device_id": "SOME_STRING_VALUE", "lang": "en" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) live_check_alive Live Check Alive
Live Check Alive
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| room_id | string | Oui | Room id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"live_check_alive","arguments":{"room_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "live_check_alive", "arguments": { "room_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "live_check_alive", "arguments": { "room_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) live_stream Live Stream
Live Stream
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| room_id | string | Oui | Room id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"live_stream","arguments":{"room_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "live_stream", "arguments": { "room_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "live_stream", "arguments": { "room_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) music_info Music Info
Music Info
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| music_id | string | Oui | Music id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"music_info","arguments":{"music_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "music_info", "arguments": { "music_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "music_info", "arguments": { "music_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) music_posts Music Posts
Music Posts
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| music_id | string | Oui | Music id |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"music_posts","arguments":{"music_id":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "music_posts", "arguments": { "music_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "music_posts", "arguments": { "music_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) music_unlimited_sounds Music Unlimited Sounds
Music Unlimited Sounds
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| music_id | string | Oui | Music id |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"music_unlimited_sounds","arguments":{"music_id":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "music_unlimited_sounds", "arguments": { "music_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "music_unlimited_sounds", "arguments": { "music_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) place_info Place Info
Place Info
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| challenge_id | string | Oui | Challenge id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"place_info","arguments":{"challenge_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "place_info", "arguments": { "challenge_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "place_info", "arguments": { "challenge_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) place_posts Place Posts
Place Posts
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| challenge_id | string | Oui | Challenge id |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"place_posts","arguments":{"challenge_id":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "place_posts", "arguments": { "challenge_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "place_posts", "arguments": { "challenge_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) post_category Post Category
Post Category
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| category_type | string | Non | Category type |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_category","arguments":{"sec_uid":"SOME_STRING_VALUE","category_type":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_category", "arguments": { "sec_uid": "SOME_STRING_VALUE", "category_type": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_category", "arguments": { "sec_uid": "SOME_STRING_VALUE", "category_type": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) post_comments Post Comments
Post Comments
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| aweme_id | string | Oui | Aweme id |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_comments","arguments":{"aweme_id":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_comments", "arguments": { "aweme_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_comments", "arguments": { "aweme_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) post_detail Post Detail
Post Detail
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| aweme_id | string | Oui | Aweme id |
| device_id | string | Non | Device id |
| from | string | Non | From |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_detail","arguments":{"aweme_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE","from":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_detail", "arguments": { "aweme_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_detail", "arguments": { "aweme_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) post_discover_keyword Post Discover Keyword
Post Discover Keyword
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_discover_keyword","arguments":{"keyword":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_discover_keyword", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_discover_keyword", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) post_reply_comments Post Reply Comments
Post Reply Comments
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| aweme_id | string | Oui | Aweme id |
| comment_id | string | Oui | Comment id |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_reply_comments","arguments":{"aweme_id":"SOME_STRING_VALUE","comment_id":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_reply_comments", "arguments": { "aweme_id": "SOME_STRING_VALUE", "comment_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "post_reply_comments", "arguments": { "aweme_id": "SOME_STRING_VALUE", "comment_id": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_account Search Account
Search Account
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
| search_id | string | Non | Search id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_account","arguments":{"keyword":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE","search_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_account", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "search_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_account", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "search_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_general Search General
Search General
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| search_id | string | Non | Search id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_general","arguments":{"keyword":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","search_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_general", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "search_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_general", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "search_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_live Search Live
Search Live
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
| search_id | string | Non | Search id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_live","arguments":{"keyword":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE","search_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_live", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "search_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_live", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "search_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_suggest_keyword Search Suggest Keyword
Search Suggest Keyword
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_suggest_keyword","arguments":{"keyword":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_suggest_keyword", "arguments": { "keyword": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_suggest_keyword", "arguments": { "keyword": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) search_video Search Video
Search Video
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
| search_id | string | Non | Search id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_video","arguments":{"keyword":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE","search_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_video", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "search_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_video", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "search_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_ads_detail Trending Ads Detail
Trending Ads Detail
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| aweme_id | string | Oui | Aweme id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_ads_detail","arguments":{"aweme_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_ads_detail", "arguments": { "aweme_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_ads_detail", "arguments": { "aweme_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_commercial_music_library Trending Commercial Music Library
Trending Commercial Music Library
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| period | string | Oui | Period |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_commercial_music_library","arguments":{"period":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_commercial_music_library", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_commercial_music_library", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_commercial_music_playlist Trending Commercial Music Playlist
Trending Commercial Music Playlist
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| period | string | Oui | Period |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_commercial_music_playlist","arguments":{"period":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_commercial_music_playlist", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_commercial_music_playlist", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_commercial_music_playlist_detail Trending Commercial Music Playlist Detail
Trending Commercial Music Playlist Detail
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| playlist_id | string | Oui | Playlist id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_commercial_music_playlist_detail","arguments":{"playlist_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_commercial_music_playlist_detail", "arguments": { "playlist_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_commercial_music_playlist_detail", "arguments": { "playlist_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_creator Trending Creator
Trending Creator
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| period | string | Oui | Period |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_creator","arguments":{"period":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_creator", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_creator", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_hashtag Trending Hashtag
Trending Hashtag
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| period | string | Oui | Period |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_hashtag","arguments":{"period":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_hashtag", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_hashtag", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_keyword Trending Keyword
Trending Keyword
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| period | string | Oui | Period |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_keyword","arguments":{"period":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_keyword", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_keyword", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_keyword_sentence Trending Keyword Sentence
Trending Keyword Sentence
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_keyword_sentence","arguments":{"keyword":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_keyword_sentence", "arguments": { "keyword": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_keyword_sentence", "arguments": { "keyword": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_song Trending Song
Trending Song
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| period | string | Oui | Period |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_song","arguments":{"period":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_song", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_song", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_top_ads Trending Top Ads
Trending Top Ads
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
| period | string | Non | Period |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_top_ads","arguments":{"keyword":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE","period":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_top_ads", "arguments": { "keyword": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE", "period": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_top_ads", "arguments": { "keyword": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE", "period": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_top_product_detail Trending Top Product Detail
Trending Top Product Detail
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| product_id | string | Oui | Product id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_top_product_detail","arguments":{"product_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_top_product_detail", "arguments": { "product_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_top_product_detail", "arguments": { "product_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_top_product_metrics Trending Top Product Metrics
Trending Top Product Metrics
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| product_id | string | Oui | Product id |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_top_product_metrics","arguments":{"product_id":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_top_product_metrics", "arguments": { "product_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_top_product_metrics", "arguments": { "product_id": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_top_products Trending Top Products
Trending Top Products
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| period | string | Oui | Period |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_top_products","arguments":{"period":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_top_products", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_top_products", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_video Trending Video
Trending Video
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| period | string | Oui | Period |
| country_code | string | Non | Country code |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_video","arguments":{"period":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_video", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_video", "arguments": { "period": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) trending_video_by_keyword Trending Video By Keyword
Trending Video By Keyword
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| keyword | string | Oui | Keyword |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending_video_by_keyword","arguments":{"keyword":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_video_by_keyword", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "trending_video_by_keyword", "arguments": { "keyword": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_followers User Followers
User Followers
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| min_cursor | string | Non | Min cursor |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_followers","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"min_cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_followers", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "min_cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_followers", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "min_cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_following User Following
User Following
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_following","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_following", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_following", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_info User Info
User Info
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Non | Sec uid |
| unique_id | string | Non | Unique id |
| with_commerce_info | string | Non | With commerce info |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_info","arguments":{"sec_uid":"SOME_STRING_VALUE","unique_id":"SOME_STRING_VALUE","with_commerce_info":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_info", "arguments": { "sec_uid": "SOME_STRING_VALUE", "unique_id": "SOME_STRING_VALUE", "with_commerce_info": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_info", "arguments": { "sec_uid": "SOME_STRING_VALUE", "unique_id": "SOME_STRING_VALUE", "with_commerce_info": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_info_by_id User Info By Id
User Info By Id
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| user_id | string | Oui | User id |
| with_commerce_info | string | Non | With commerce info |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_info_by_id","arguments":{"user_id":"SOME_STRING_VALUE","with_commerce_info":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_info_by_id", "arguments": { "user_id": "SOME_STRING_VALUE", "with_commerce_info": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_info_by_id", "arguments": { "user_id": "SOME_STRING_VALUE", "with_commerce_info": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_info_v2 User Info V2
User Info V2
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Non | Sec uid |
| unique_id | string | Non | Unique id |
| with_commerce_info | string | Non | With commerce info |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_info_v2","arguments":{"sec_uid":"SOME_STRING_VALUE","unique_id":"SOME_STRING_VALUE","with_commerce_info":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_info_v2", "arguments": { "sec_uid": "SOME_STRING_VALUE", "unique_id": "SOME_STRING_VALUE", "with_commerce_info": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_info_v2", "arguments": { "sec_uid": "SOME_STRING_VALUE", "unique_id": "SOME_STRING_VALUE", "with_commerce_info": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_playlist User Playlist
User Playlist
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_playlist","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_playlist", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_playlist", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_posts User Posts
User Posts
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
| from | string | Non | From |
| with_play_token | string | Non | With play token |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_posts","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE","from":"SOME_STRING_VALUE","with_play_token":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_posts", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE", "with_play_token": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_posts", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE", "with_play_token": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_posts_liked User Posts Liked
User Posts Liked
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
| from | string | Non | From |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_posts_liked","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE","from":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_posts_liked", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_posts_liked", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_posts_oldest User Posts Oldest
User Posts Oldest
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
| from | string | Non | From |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_posts_oldest","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE","from":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_posts_oldest", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_posts_oldest", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_posts_popular User Posts Popular
User Posts Popular
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
| from | string | Non | From |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_posts_popular","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE","from":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_posts_popular", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_posts_popular", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE", "from": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_repost User Repost
User Repost
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_repost","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_repost", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_repost", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) user_story User Story
User Story
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| sec_uid | string | Oui | Sec uid |
| count | string | Non | Nombre de résultats à retourner |
| cursor | string | Non | Cursor |
| device_id | string | Non | Device id |
Exemples de code
curl -X POST \ 'https://mcp.pressmonitor.com/tiktok/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"user_story","arguments":{"sec_uid":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR","device_id":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_story", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/tiktok/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "user_story", "arguments": { "sec_uid": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR", "device_id": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/tiktok/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json())