> ## Documentation Index
> Fetch the complete documentation index at: https://docs.muna.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a Prediction

### Body

<ParamField body="tag" type="string" required>
  Predictor tag.
</ParamField>

<ParamField body="clientId" type="string" required>
  Prediction client identifier.
</ParamField>

<ParamField body="configurationId" type="string">
  Prediction configuration identifier.
</ParamField>

<ParamField body="deviceId" type="string">
  Device identifier, used for choosing optimal implementation to respond with.
</ParamField>

<ParamField body="predictionId" type="string">
  For making predictions with embedded predictors, providing the original prediction identifier ensures that
  the same prediction implementation is provided to the device.
</ParamField>

### Response

<ResponseField name="id" type="string" required>
  Prediction identifier.
</ResponseField>

<ResponseField name="tag" type="string" required>
  Predictor tag.
</ResponseField>

<ResponseField name="configuration" type="string">
  Prediction configuration token.
</ResponseField>

<ResponseField name="resources" type="PredictionResource[]" required>
  Prediction resources.

  <Expandable title="properties">
    <ResponseField name="type" type="string" required>
      Prediction resource type.
    </ResponseField>

    <ResponseField name="url" type="string" required>
      Prediction resource URL.
    </ResponseField>

    <ResponseField name="name" type="string">
      Prediction resource name.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="created" type="Date" required>
  Prediction creation date.
</ResponseField>
