TemPolor API Platform
API DocumentsTemPolor API PlatformCreate Music
API DocumentsTemPolor API PlatformCreate Music
Discord
  1. Instrumental
  • Get Started
    • Overview
    • Quickstart
    • Model and Pricing
  • API Reference
    • General Information
      • Certification Methods
      • Error Code
    • Song
      • Voice ID option table
      • Song Generation
        POST
      • Song Extension
        POST
      • Callback Interface
        POST
      • Query Task Status
        POST
    • Instrumental
      • Instrumental Generation
        POST
      • Instrumental Extension
        POST
      • Callback Interface
        POST
      • Query Task Status
        POST
    • Lyrics
      • Lyrics Generation
        POST
      • Callback Interface
        POST
      • Query Task Status
        POST
    • Audio Track Splitting
      • Create Task
        POST
      • Callback Interface
        POST
      • Query Task Status
        POST
    • Account
      • Query Information
        POST
  • Others
    • Feature List
  1. Instrumental

Query Task Status

POST
/open-apis/v1/instrumental/query
Enter item ID to query corresponding information.

Request

Header Params
Authorization
string 
required
API Key
Example:
Tempo-********************************-3w
Content-Type
string 
required
Example:
application/json; charset=utf-8
Body Params application/json
item_ids
array[string]
required
List of task itemIDs to query, maximum 10.
Example
{
    "item_ids": [
        "123"
    ]
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/open-apis/v1/instrumental/query' \
--header 'Authorization: Tempo-********************************-3w' \
--header 'Content-Type: application/json; charset=utf-8' \
--data-raw '{
    "item_ids": [
        "123"
    ]
}'

Responses

🟢200OK
application/json
Body
status
integer 
required
Response status code
message
string 
required
Description of the response result
request_id
string 
required
The unique ID for this request, can be used to contact customer service for troubleshooting, etc.
data
object 
required
Specific return results
instrumentals
array [object {12}] 
required
Example
{
    "status": 200000,
    "message": "success",
    "request_id": "1165b1fc-e56d-4b55-a5d9-dbae434cd47d",
    "data": {
        "instrumentals": [
            {
                "item_id": "123",
                "status": "succeeded",
                "audio_hi_status": "sub_succeeded",
                "model": "TemPolor i3.5",
                "title": "Neon Pulse Groove",
                "prompt": "Genre: Electronic Dance Music (EDM), House, Techno  Style: Instrumental, Beat-driven, Club-oriented  Mood: Energetic, Vibrant, Hypnotic  Tempo: Typically ranges from 120 to 130 BPM (Beats Per Minute)  Structure: Build-ups, Drops, Breakdowns  Instruments/Sounds: Synthesizers, Drum Machines, Basslines, Hi-hats, Pads  Purpose: Ideal for clubs, parties, workout sessions, or background ambiance  Vibe: Uplifting, Groovy, Futuristic",
                "duration": 266,
                "created_at": 1747276813,
                "finished_at": 1747277627,
                "audio_url": "https://****",
                "audio_hi_url": "https://****",
                "style": "electronic,house,techno"
            }
        ]
    }
}
Previous
Callback Interface
Next
Lyrics Generation