> For the complete documentation index, see [llms.txt](https://morphos.gitbook.io/morphos-ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://morphos.gitbook.io/morphos-ai/getting-started/cost.md).

# Cost

Our costs are simply based on the number of input\_vectors provided. For the example request below, there are 2 input\_vectors.

Example Request:

```json
{
  "facet_vectors": [
    {
      "facet": "clothing",
      "vector": [0.1, 0.2, 0.3],
      "count": 1,
      "average_weight": 0.5
    },
    {
      "facet": "electronics",
      "vector": [0.4, 0.5, 0.6],
      "count": 1,
      "average_weight": 0.5
    }
  ],
  "input_vectors": [
    {
      "vector": [0.2, 0.3, 0.4],
      "facet_weights": {
        "clothing": 0.5,
        "electronics": 0.8
      }
    },
    {
      "vector": [0.3, 0.4, 0.5],
      "facet_weights": {
        "clothing": 0.3
      }
    }
  ]
}
```

<table><thead><tr><th width="178">Input Vectors</th><th>Cost</th></tr></thead><tbody><tr><td>0 - 10,000</td><td>$100 / 10k vectors</td></tr><tr><td>Pay-per-vector</td><td>$0.015 cents / vector</td></tr></tbody></table>
