Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

fetch devto api with api key

const articles = fetch("https://dev.to/api/articles/me", {
    headers: {
      "api-key": process.env.API_KEY,
    },
}).then((res) => res.json()); 
 
PREVIOUS NEXT
Tagged: #fetch #devto #api #api #key
ADD COMMENT
Topic
Name
5+7 =