Reading from the API

The read method allows you to retrieve the vector representation of the text previously written to the FastVecAPI:

# read them back
for word in words:
    resp = api.read(word)
    print(resp)

The read method returns a response object which contains the status and the vector representation of the text.