Exactly Bright Pulse

Bright Pulse is a photographic style from Exactly AI that produces images with vivid, energetic lighting and a fresh, modern feel. It generates photos with bright tones, clean highlights, and lively color balance, ideal for product photography, lifestyle content, social media visuals, and projects that need a vibrant, upbeat aesthetic.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples4
CODE
Ready-to-use code snippets for common workflows
reference-to-image
Pipe Organ Editorial Restyle$0.195~2m 18s
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'exactly:photo@bright-pulse',
width: 2048,
height: 2048,
inputs: {
referenceImages: [
{
type: 'instruct',
image: 'https://assets.runware.ai/assets/inputs/90160170-4d15-4f8f-90e6-51769eb8ddd3.jpg'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/90160170-4d15-4f8f-90e6-51769eb8ddd3.jpg"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "26687c0a-c2c2-42c4-a596-88f4c6c8d170",
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/90160170-4d15-4f8f-90e6-51769eb8ddd3.jpg"
}
]
}
}
]'runware run exactly:photo@bright-pulse \
width=2048 \
height=2048 \
inputs.referenceImages.0.type=instruct \
inputs.referenceImages.0.image=https://assets.runware.ai/assets/inputs/90160170-4d15-4f8f-90e6-51769eb8ddd3.jpg{
"taskType": "imageInference",
"taskUUID": "26687c0a-c2c2-42c4-a596-88f4c6c8d170",
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/90160170-4d15-4f8f-90e6-51769eb8ddd3.jpg"
}
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "26687c0a-c2c2-42c4-a596-88f4c6c8d170",
"imageUUID": "baaa1536-9187-4b98-9242-e06cda3816a7",
"imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/4/ii/baaa1536-9187-4b98-9242-e06cda3816a7.jpg",
"seed": 1807491223,
"cost": 0.195
}reference-to-image
Satellite Assembly Campaign Hero$0.195~1m 57s
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'exactly:photo@bright-pulse',
width: 2048,
height: 2048,
inputs: {
referenceImages: [
{
type: 'instruct',
image: 'https://assets.runware.ai/assets/inputs/46ee3053-ea6a-45a7-b93d-5ea4ebc23e4e.jpg'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/46ee3053-ea6a-45a7-b93d-5ea4ebc23e4e.jpg"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "9fc618f8-cd8e-471d-95d4-8549527126e5",
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/46ee3053-ea6a-45a7-b93d-5ea4ebc23e4e.jpg"
}
]
}
}
]'runware run exactly:photo@bright-pulse \
width=2048 \
height=2048 \
inputs.referenceImages.0.type=instruct \
inputs.referenceImages.0.image=https://assets.runware.ai/assets/inputs/46ee3053-ea6a-45a7-b93d-5ea4ebc23e4e.jpg{
"taskType": "imageInference",
"taskUUID": "9fc618f8-cd8e-471d-95d4-8549527126e5",
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/46ee3053-ea6a-45a7-b93d-5ea4ebc23e4e.jpg"
}
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "9fc618f8-cd8e-471d-95d4-8549527126e5",
"imageUUID": "3ae41a93-63c4-478d-ae63-3acfd379992e",
"imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/4/ii/3ae41a93-63c4-478d-ae63-3acfd379992e.jpg",
"seed": 1608518790,
"cost": 0.195
}reference-to-image
Geothermal Annual Report Portrait Restyle$0.195~2m 58s
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'exactly:photo@bright-pulse',
width: 2048,
height: 2048,
inputs: {
referenceImages: [
{
type: 'instruct',
image: 'https://assets.runware.ai/assets/inputs/67c6c1bd-e5dd-4f21-aac0-c0b488df2015.jpg'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/67c6c1bd-e5dd-4f21-aac0-c0b488df2015.jpg"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "80dc2fcc-7bff-4d52-b2a4-b10b7cf18715",
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/67c6c1bd-e5dd-4f21-aac0-c0b488df2015.jpg"
}
]
}
}
]'runware run exactly:photo@bright-pulse \
width=2048 \
height=2048 \
inputs.referenceImages.0.type=instruct \
inputs.referenceImages.0.image=https://assets.runware.ai/assets/inputs/67c6c1bd-e5dd-4f21-aac0-c0b488df2015.jpg{
"taskType": "imageInference",
"taskUUID": "80dc2fcc-7bff-4d52-b2a4-b10b7cf18715",
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/67c6c1bd-e5dd-4f21-aac0-c0b488df2015.jpg"
}
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "80dc2fcc-7bff-4d52-b2a4-b10b7cf18715",
"imageUUID": "80336688-9549-47ca-be5b-6bc7337cbd42",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/4/ii/80336688-9549-47ca-be5b-6bc7337cbd42.jpg",
"seed": 144918677,
"cost": 0.195
}reference-to-image
Airport Falconry Crew Group Portrait$0.195~2m 13s
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'exactly:photo@bright-pulse',
width: 2048,
height: 2048,
inputs: {
referenceImages: [
{
type: 'instruct',
image: 'https://assets.runware.ai/assets/inputs/2e306cc8-556b-495a-a554-795105da0622.jpg'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/2e306cc8-556b-495a-a554-795105da0622.jpg"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "c6efa0ee-5a2e-40b1-bfc4-f7ebe17e1a6d",
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/2e306cc8-556b-495a-a554-795105da0622.jpg"
}
]
}
}
]'runware run exactly:photo@bright-pulse \
width=2048 \
height=2048 \
inputs.referenceImages.0.type=instruct \
inputs.referenceImages.0.image=https://assets.runware.ai/assets/inputs/2e306cc8-556b-495a-a554-795105da0622.jpg{
"taskType": "imageInference",
"taskUUID": "c6efa0ee-5a2e-40b1-bfc4-f7ebe17e1a6d",
"model": "exactly:photo@bright-pulse",
"width": 2048,
"height": 2048,
"inputs": {
"referenceImages": [
{
"type": "instruct",
"image": "https://assets.runware.ai/assets/inputs/2e306cc8-556b-495a-a554-795105da0622.jpg"
}
]
}
}Response
{
"taskType": "imageInference",
"taskUUID": "c6efa0ee-5a2e-40b1-bfc4-f7ebe17e1a6d",
"imageUUID": "47d78c7f-312b-4ea7-802f-9c1b5deae334",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/47d78c7f-312b-4ea7-802f-9c1b5deae334.jpg",
"seed": 1268732331,
"cost": 0.195
}