The discounted Contributor tier of Meta's Muse Spark 1.3 - same model, about 1/12 of the standard price, on the condition that prompts and responses may be used by Meta to train its models. Do not send personal, confidential or customer data. Shares an upstream limit of 100 requests / 3M tokens per minute.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 186 | $0.12 |
| Output Tokens | 372 | $0.25 |
| Cached Tokens | 3.716 | $0.00 |
* 1,500 credits โ $1 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/llm/meta/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "muse-spark-1.3-contributor",
"messages": [
{
"role": "user",
"content": "Summarize this public press release in 3 bullets: ..."
}
],
"max_tokens": 4096
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
messages | array | Yes | - | Chat messages in OpenAI format. Content may be used by Meta for training - no personal or confidential data. |
max_tokens | integer | No | 2048 | Maximum completion tokens including reasoning. Keep >= 2048 or the answer may be cut off before any content is produced. |
temperature | number | No | 0.7 | Sampling temperature (0-2). |
stream | boolean | No | false | Stream the response as server-sent events. |
Summarize a public article - content may be used for Meta training.
curl -X POST "https://api.core.today/llm/meta/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "muse-spark-1.3-contributor",
"messages": [
{
"role": "user",
"content": "Summarize this public press release in 3 bullets: ..."
}
],
"max_tokens": 4096
}'POST /llm/meta/v1/chat/completions