<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> 
<script> 
    function loadFormattedWOD(selector, apiKey, date, location, program) { 
        $.ajax({ 
            url: 'https://app.wodify.com/API/WODs_v1.aspx', 
            data: {
                apiKey: apiKey, 
                date: date, 
                location: location, 
                program: program, 
                type: "json"
            },  
            dataType: "json",  
            success: function(data){  
                if(data && data.RecordList.APIWod.FormattedWOD) {  
                  $(selector).html(data.RecordList.APIWod.FormattedWOD);  
                }  
            }  
        });  
    } 
    var today = new Date(); 
    var dateString = today.getFullYear() + '-' + (today.getMonth() + 1) + '-' + today.getDate(); 
    loadFormattedWOD("#wodbody", "vqc5AsH4rf3GTw0xjx2QbZEIF", dateString, "Custom Fitness", "Functional Fitness); 

</script> 
<div id="wodbody" />