MODEL IDexactly:photo@journey
live

Exactly Journey

Exactly AI
by Exactly AI

Journey is a photographic style from Exactly AI that produces images with rich, cinematic tones evoking travel and exploration. It generates photos with warm golden-hour lighting, expansive compositions, and a sense of narrative depth, ideal for travel content, landscape photography, campaign visuals, and storytelling projects with an adventurous spirit.

Exactly Journey
Image to Image

Cold Brew Social Ad

Cold Brew Social Ad
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@journey',
  width: 2528,
  height: 1696,
  inputs: {
    referenceImages: [
      {
        type: 'instruct',
        image: 'https://assets.runware.ai/assets/inputs/80326344-6c59-4bb6-8e56-6711a6b7bbaa.jpg'
      }
    ]
  },
  watermark: {
    text: 'TRAILHEAD COLD BREW',
    displayPosition: 'bottom-right',
    opacity: 0.35,
    fontColor: '#FFFFFF'
  }
})
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@journey",
            "width": 2528,
            "height": 1696,
            "inputs": {
                "referenceImages": [
                    {
                        "type": "instruct",
                        "image": "https://assets.runware.ai/assets/inputs/80326344-6c59-4bb6-8e56-6711a6b7bbaa.jpg"
                    }
                ]
            },
            "watermark": {
                "text": "TRAILHEAD COLD BREW",
                "displayPosition": "bottom-right",
                "opacity": 0.35,
                "fontColor": "#FFFFFF"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "bb5e8b41-da0a-4672-a318-3d50b0484182",
      "model": "exactly:photo@journey",
      "width": 2528,
      "height": 1696,
      "inputs": {
        "referenceImages": [
          {
            "type": "instruct",
            "image": "https://assets.runware.ai/assets/inputs/80326344-6c59-4bb6-8e56-6711a6b7bbaa.jpg"
          }
        ]
      },
      "watermark": {
        "text": "TRAILHEAD COLD BREW",
        "displayPosition": "bottom-right",
        "opacity": 0.35,
        "fontColor": "#FFFFFF"
      }
    }
  ]'
runware run exactly:photo@journey \
  width=2528 \
  height=1696 \
  inputs.referenceImages.0.type=instruct \
  inputs.referenceImages.0.image=https://assets.runware.ai/assets/inputs/80326344-6c59-4bb6-8e56-6711a6b7bbaa.jpg \
  watermark.text="TRAILHEAD COLD BREW" \
  watermark.displayPosition=bottom-right \
  watermark.opacity=0.35 \
  watermark.fontColor="#FFFFFF"
{
  "taskType": "imageInference",
  "taskUUID": "bb5e8b41-da0a-4672-a318-3d50b0484182",
  "model": "exactly:photo@journey",
  "width": 2528,
  "height": 1696,
  "inputs": {
    "referenceImages": [
      {
        "type": "instruct",
        "image": "https://assets.runware.ai/assets/inputs/80326344-6c59-4bb6-8e56-6711a6b7bbaa.jpg"
      }
    ]
  },
  "watermark": {
    "text": "TRAILHEAD COLD BREW",
    "displayPosition": "bottom-right",
    "opacity": 0.35,
    "fontColor": "#FFFFFF"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "bb5e8b41-da0a-4672-a318-3d50b0484182",
  "imageUUID": "72b28df4-1423-4a01-bdd8-05bbe2c17282",
  "imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/4/ii/72b28df4-1423-4a01-bdd8-05bbe2c17282.jpg",
  "seed": 1733561919,
  "cost": 0.195
}
Image to Image

Riparian Buffer Explainer Infographic

Riparian Buffer Explainer Infographic
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@journey',
  width: 1264,
  height: 848,
  inputs: {
    referenceImages: [
      {
        type: 'instruct',
        image: 'https://assets.runware.ai/assets/inputs/f7eb3375-249e-4fac-b9a0-09b3b746a098.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@journey",
            "width": 1264,
            "height": 848,
            "inputs": {
                "referenceImages": [
                    {
                        "type": "instruct",
                        "image": "https://assets.runware.ai/assets/inputs/f7eb3375-249e-4fac-b9a0-09b3b746a098.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": "649b7846-543d-4d91-abc4-d65df4bb54e5",
      "model": "exactly:photo@journey",
      "width": 1264,
      "height": 848,
      "inputs": {
        "referenceImages": [
          {
            "type": "instruct",
            "image": "https://assets.runware.ai/assets/inputs/f7eb3375-249e-4fac-b9a0-09b3b746a098.jpg"
          }
        ]
      }
    }
  ]'
runware run exactly:photo@journey \
  width=1264 \
  height=848 \
  inputs.referenceImages.0.type=instruct \
  inputs.referenceImages.0.image=https://assets.runware.ai/assets/inputs/f7eb3375-249e-4fac-b9a0-09b3b746a098.jpg
{
  "taskType": "imageInference",
  "taskUUID": "649b7846-543d-4d91-abc4-d65df4bb54e5",
  "model": "exactly:photo@journey",
  "width": 1264,
  "height": 848,
  "inputs": {
    "referenceImages": [
      {
        "type": "instruct",
        "image": "https://assets.runware.ai/assets/inputs/f7eb3375-249e-4fac-b9a0-09b3b746a098.jpg"
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "649b7846-543d-4d91-abc4-d65df4bb54e5",
  "imageUUID": "1b8d1561-584d-4ca4-9e05-e4b5e29506d2",
  "imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/1b8d1561-584d-4ca4-9e05-e4b5e29506d2.jpg",
  "seed": 1253696732,
  "cost": 0.195
}
Image to Image

Adventure Travel Social Ad

Adventure Travel Social Ad
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@journey',
  width: 1264,
  height: 848,
  inputs: {
    referenceImages: [
      {
        type: 'instruct',
        image: 'https://assets.runware.ai/assets/inputs/8b71d61f-2485-4fa0-838d-2213ad65d1d6.jpg'
      }
    ]
  },
  watermark: {
    text: 'NORDHAVEN TREKS',
    displayPosition: 'bottom-right',
    opacity: 0.7,
    fontColor: '#FFFFFF'
  }
})
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@journey",
            "width": 1264,
            "height": 848,
            "inputs": {
                "referenceImages": [
                    {
                        "type": "instruct",
                        "image": "https://assets.runware.ai/assets/inputs/8b71d61f-2485-4fa0-838d-2213ad65d1d6.jpg"
                    }
                ]
            },
            "watermark": {
                "text": "NORDHAVEN TREKS",
                "displayPosition": "bottom-right",
                "opacity": 0.7,
                "fontColor": "#FFFFFF"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "e9b241e2-6e93-41ee-b0a9-1e41b23a1fc5",
      "model": "exactly:photo@journey",
      "width": 1264,
      "height": 848,
      "inputs": {
        "referenceImages": [
          {
            "type": "instruct",
            "image": "https://assets.runware.ai/assets/inputs/8b71d61f-2485-4fa0-838d-2213ad65d1d6.jpg"
          }
        ]
      },
      "watermark": {
        "text": "NORDHAVEN TREKS",
        "displayPosition": "bottom-right",
        "opacity": 0.7,
        "fontColor": "#FFFFFF"
      }
    }
  ]'
runware run exactly:photo@journey \
  width=1264 \
  height=848 \
  inputs.referenceImages.0.type=instruct \
  inputs.referenceImages.0.image=https://assets.runware.ai/assets/inputs/8b71d61f-2485-4fa0-838d-2213ad65d1d6.jpg \
  watermark.text="NORDHAVEN TREKS" \
  watermark.displayPosition=bottom-right \
  watermark.opacity=0.7 \
  watermark.fontColor="#FFFFFF"
{
  "taskType": "imageInference",
  "taskUUID": "e9b241e2-6e93-41ee-b0a9-1e41b23a1fc5",
  "model": "exactly:photo@journey",
  "width": 1264,
  "height": 848,
  "inputs": {
    "referenceImages": [
      {
        "type": "instruct",
        "image": "https://assets.runware.ai/assets/inputs/8b71d61f-2485-4fa0-838d-2213ad65d1d6.jpg"
      }
    ]
  },
  "watermark": {
    "text": "NORDHAVEN TREKS",
    "displayPosition": "bottom-right",
    "opacity": 0.7,
    "fontColor": "#FFFFFF"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "e9b241e2-6e93-41ee-b0a9-1e41b23a1fc5",
  "imageUUID": "582c74a8-207f-4551-a40f-e3a0a70d8f29",
  "imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/582c74a8-207f-4551-a40f-e3a0a70d8f29.jpg",
  "seed": 2034800595,
  "cost": 0.195
}
Image to Image

Electric SUV Launch Billboard

Electric SUV Launch Billboard
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@journey',
  width: 2528,
  height: 1696,
  inputs: {
    referenceImages: [
      {
        type: 'instruct',
        image: 'https://assets.runware.ai/assets/inputs/28cabd8e-682b-43b0-8fe0-6af44cbf72d1.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@journey",
            "width": 2528,
            "height": 1696,
            "inputs": {
                "referenceImages": [
                    {
                        "type": "instruct",
                        "image": "https://assets.runware.ai/assets/inputs/28cabd8e-682b-43b0-8fe0-6af44cbf72d1.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": "b2f5040e-de94-42c7-86b1-7bffaeb319cc",
      "model": "exactly:photo@journey",
      "width": 2528,
      "height": 1696,
      "inputs": {
        "referenceImages": [
          {
            "type": "instruct",
            "image": "https://assets.runware.ai/assets/inputs/28cabd8e-682b-43b0-8fe0-6af44cbf72d1.jpg"
          }
        ]
      }
    }
  ]'
runware run exactly:photo@journey \
  width=2528 \
  height=1696 \
  inputs.referenceImages.0.type=instruct \
  inputs.referenceImages.0.image=https://assets.runware.ai/assets/inputs/28cabd8e-682b-43b0-8fe0-6af44cbf72d1.jpg
{
  "taskType": "imageInference",
  "taskUUID": "b2f5040e-de94-42c7-86b1-7bffaeb319cc",
  "model": "exactly:photo@journey",
  "width": 2528,
  "height": 1696,
  "inputs": {
    "referenceImages": [
      {
        "type": "instruct",
        "image": "https://assets.runware.ai/assets/inputs/28cabd8e-682b-43b0-8fe0-6af44cbf72d1.jpg"
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "b2f5040e-de94-42c7-86b1-7bffaeb319cc",
  "imageUUID": "968ef01a-89f9-4a97-8165-9a31d42a830d",
  "imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/4/ii/968ef01a-89f9-4a97-8165-9a31d42a830d.jpg",
  "seed": 1629874267,
  "cost": 0.195
}