Delete LTX Studio API account configuration
June 3, 2025 (March 9, 2026)
LTX Studio API has been retired due to low demand. If you are interested in using it, this API can be easily resurrected — please contact [email protected] with your request.
Table of contents
This endpoint deletes a specific LTX Studio account configuration by email address.
https://api.useapi.net/v1/ltxstudio/accounts/
Request Headers
Authorization: Bearer {API token}
API tokenis required, see Setup useapi.net for details.
Path Parameters
emailis required, specify the email address of the LTX Studio account to delete
Responses
-
Account configuration deleted successfully.
-
{ "error": "Unauthorized", "code": 401 } -
Account configuration not found for the specified email address.
Examples
-
curl -X DELETE https://api.useapi.net/v1/ltxstudio/accounts/[email protected] \ -H "Accept: application/json" \ -H "Authorization: Bearer …" -
const token = "API token"; const email = "[email protected]"; const apiUrl = `https://api.useapi.net/v1/ltxstudio/accounts/${email}`; const response = await fetch(apiUrl, { method: "DELETE", headers: { "Authorization": `Bearer ${token}`, }, }); console.log("response", {response}); -
import requests token = "API token" email = "[email protected]" apiUrl = f"https://api.useapi.net/v1/ltxstudio/accounts/{email}" headers = { "Authorization" : f"Bearer {token}" } response = requests.delete(apiUrl, headers=headers) print(response)