import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const response = await client.dataframer.runs.status('run_id');
console.log(response);{}Get run status
import Dataframer from 'dataframer';
const client = new Dataframer({
apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
});
const response = await client.dataframer.runs.status('run_id');
console.log(response);{}