Authorization: Bearer ********************{
  "input": [
    "Sample text 1",
    "Sample text 2"
  ],
  "model": "voyage-3.5"
}curl --location --request POST 'https://api.302.ai/v1/embeddings' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "input": [
    "Sample text 1",
    "Sample text 2"
  ],
  "model": "voyage-3.5"
}'{
  "object": "list",
  "data": [
    {
      "object": "embedding",
      "embedding": [
        0.0023064255,
        -0.009327292,
        .... (1536 floats total for ada-002)
        -0.0028842222
      ],
      "index": 0
    }
  ],
  "model": "text-embedding-ada-002",
  "usage": {
    "prompt_tokens": 8,
    "total_tokens": 8
  }
}