#Nomic API keys

5 messages · Page 1 of 1 (latest)

vital hill
#

Why do I need a Nomic API key to use your text embedding model ?

pallid jayBOT
#

Hi @vital hill. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:

#

A Nomic API key is required to use the text embedding model because it serves as an authentication token, granting you access to the Nomic Atlas API's features, including creating text embeddings. This key ensures secure access to Nomic's services and enables Nomic to manage and monitor the usage of its API, ensuring optimal performance and availability for all users. When you make a request to the Nomic API, such as creating text embeddings, you must include your API key in the request header for authentication.

Here's an example of how to use the Nomic API key when creating text embeddings:

curl <https://api-atlas.nomic.ai/v1/embedding/text> \
  -H "Authorization: Bearer $NOMIC_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "nomic-embed-text-v1", "texts": ["The quick brown fox..."]}'

In this example, $NOMIC_API_KEY should be replaced with your actual Nomic API key. This key is crucial for accessing the text embedding functionality provided by Nomic Atlas.

For more information on obtaining and using your Nomic Atlas API key, you can visit the official documentation at atlas.nomic.ai (https://atlas.nomic.ai).

Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:

#

@vital hill kapa.ai is still learning and improving, please let us know how it did by reacting below

vital hill
#

What data does Nomic receive when using your embeddings API key ?