Skip to content

Dreamify API is an express.js server made to create beautiful AI generated images from texts using Open AI

Notifications You must be signed in to change notification settings

yorhadev/dreamify-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dreamify API

Dreamify API is a free but limited wrapper around OpenAI API that you can use to generate text to image made from AI without running any server-side code. It's awesome for teaching purposes, sample codes, tests and etc.

Why?

I wanted to design a portfolio project prototype that showed my knowledge as a Full-Stack developer, so I decided to create this simple web service with NodeJs (express).

How to

you can fetch data with any kind of methods you know (fetch API, Axios, jquery, ajax,...)

Create image

const response = await fetch("https://dreamify-api.netlify.app/.netlify/functions/api/v1/create", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ prompt: data.get("prompt") }),
});

About

Dreamify API is an express.js server made to create beautiful AI generated images from texts using Open AI

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published