Full Post
Get Individual Post
GET
/v2/spotlight/:corporation/:id
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Url
Name
Type
Description
corporation
number
Corporation ID
id
number
Unique post id
Response
{
data: {
spotlight: [],
tags: [],
seo: []
},
success: true
}
Code
const accessToken = `<ACCESS TOKEN>`
fetch('https://public-api.expertfile.com/v2/spotlight/:corporation/:id', {
method: 'GET',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization': `Bearer ${accessToken}`
}
})
.then(response => response.json())
.then(json => {
const { success, data } = json
if (success) {
const { spotlight, tags, seo } = data;
console.log('post', spotlight)
}
})
.catch(error => console.error(error));
Last updated
Was this helpful?