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

  1. Request Headers
  2. Path Parameters
  3. Responses
  4. Examples
  5. Try It

This endpoint deletes a specific LTX Studio account configuration by email address.

https://api.useapi.net/v1/ltxstudio/accounts/email

Request Headers
Authorization: Bearer {API token}
Path Parameters
  • email is required, specify the email address of the LTX Studio account to delete
Responses
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)
    
Try It