
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
coloring-pages-api
Advanced tools
API wrapper for ColoringPagesDesign coloring page generation service
You can create printable coloring pages for kids and adults.
/developersbash npm install coloringpages-api
or yarn add coloringpages-api
import ColoringPagesAPI from 'coloringpages-api';
// Initialize the client
const api = new ColoringPagesAPI('YOUR_API_KEY');
// Request coloring page creation
const coloringPage = await api.createColoringPage('SUBJECT HERE', 'STYLE HERE', 'COMPLEXITY HERE', 'VISIBILITY HERE');
console.log('Result coloring page: ', coloringPage.imageUrl);
console.log('Is image safe: ', coloringPage.isImageSafe)
| Tier | Requests/minute | Daily Limit |
|---|---|---|
| Free | 10 | 100 |
| Paid | Unlimited | Unlimited |
try {
const api = new ColoringPagesAPI('YOUR_API_KEY');
const subject = 'butterfly'; // Whatever subject you want
const style = 'pixel-art' // 'figurine', 'pixel-art', 'anime'
const complexity = 'easy'; // 'easy', 'hard'
const visibility = 'public'; // 'public', 'private'
const coloringPage = await api.createColoringPage(subject, style, complexity, visibility);
console.log('Result coloring page: ', coloringPage.imageUrl);
console.log('Is image safe: ', coloringPage.isImageSafe)
} catch (error) {
if (error.status === 429) {
console.log('Rate limit exceeded');
} else {
console.error('API Error:', error.message);
}
}
| Method | Description |
|---|---|
createColoringPage(subject, style, complexity, visibility) | Create a new coloring page |
For support, contact our support team at support-api@coloringpagesdesign.com.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
API wrapper for ColoringPagesDesign coloring page generation service
We found that coloring-pages-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.