rekaai/reka-edgeReka Edge is an extremely efficient 7B multimodal vision-language model that accepts image/video+text inputs and generates text outputs. This model is optimized specifically to deliver industry-leading performance in image understanding,...
Billing follows the provider's own reported cost rather than the catalogue price — cached input is cheaper, and reasoning tokens bill as output. Your usage page is the record of what you actually paid.
One free message per account, no deposit needed. The reply is length-capped — it's a taste, not a quota.
Connect a wallet and sign in to use your free try.
Connect a walletEvery model goes through the same endpoint — just use this page's ID as model.
curl https://macdecloud.com/v1/chat/completions \
-H "Authorization: Bearer dcld-sk-..." \
-H "Content-Type: application/json" \
-d '{"model":"rekaai/reka-edge","messages":[{"role":"user","content":"Hello"}]}'Add "stream": true for token-by-token output over standard SSE.
curl -N https://macdecloud.com/v1/chat/completions \
-H "Authorization: Bearer dcld-sk-..." \
-H "Content-Type: application/json" \
-d '{"model":"rekaai/reka-edge","stream":true,"messages":[{"role":"user","content":"hi"}]}'This model supports tools. Replies may carry tool_calls; run them and append the results as role: "tool" messages, then call again.
{
"model": "rekaai/reka-edge",
"messages": [{ "role": "user", "content": "What's the weather in Paris?" }],
"tools": [{
"type": "function",
"function": {
"name": "get_weather",
"parameters": {
"type": "object",
"properties": { "city": { "type": "string" } },
"required": ["city"]
}
}
}]
}Supports response_format, so the model returns JSON matching a schema you give it instead of prose you have to parse.
{
"model": "rekaai/reka-edge",
"messages": [{ "role": "user", "content": "..." }],
"response_format": {
"type": "json_schema",
"json_schema": {
"name": "result",
"schema": {
"type": "object",
"properties": { "answer": { "type": "string" } },
"required": ["answer"]
}
}
}
}Make content an array mixing text and image_url parts. The image can be a public URL or a data: base64 payload.
{
"model": "rekaai/reka-edge",
"messages": [{
"role": "user",
"content": [
{ "type": "text", "text": "What is in this image?" },
{ "type": "image_url", "image_url": { "url": "https://example.com/photo.jpg" } }
]
}]
}This model is also tagged for video input. The exact message shape is defined by the upstream provider and deCloud passes it through unchanged, so follow the provider's docs for those parameters.