sad

Javascript code posted
created at 15 Jan 17:38, updated at 29 Aug 18:28

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
fetch('https://api.pdfloom.com/v1/convert/html', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer <token>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    'content': '<html><body><h1>Hello, World</h1></body></html>',
    'options': {
      'pageSize': 'A4'
    }
  })
});
322 Bytes in 2 ms with coderay