Haiper Inference
API Migration Notice
Video
Create Job
curl --location 'https://api.netmind.ai/v1/netmind-video-job' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{API_TOKEN}}' \
--data '{
"job_type":"text2video",
"config": {
"prompt": "A sci-fi and historical drama that tells the story of a time traveler’s experiences across different historical periods and how they influence major events."
}
}'import requests
import json
url = "https://api.netmind.ai/v1/netmind-video-job"
payload = json.dumps({
"job_type": "text2video",
"config": {
"prompt": "A sci-fi and historical drama that tells the story of a time traveler’s experiences across different historical periods and how they influence major events."
}
})
headers = {
'Content-Type': 'application/json',
'Authorization': 'Bearer {{API_TOKEN}}'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Get Job
List Job
Delete Inference Job
Image
Create Job
Get Job
List Job
Delete Inference Job
Last updated