Home Account & Billing Manage Your TexAu API Keys

Manage Your TexAu API Keys

Last updated on Apr 06, 2026

Manage Your TexAu API Keys

Coming soon: API key management is not yet available in all accounts. This article describes an upcoming feature.

This article explains how to create, use, and revoke API keys in TexAu.

What API keys are used for

TexAu API keys let you access the TexAu API from your own applications, scripts, or automation tools. Use them to:

  • Trigger enrichment runs programmatically
  • Pull enriched data from a table into your own system
  • Push rows into a table from an external source
  • Integrate TexAu into an existing data pipeline

API keys are different from the integration API keys you enter in Settings > Integrations. Those keys let TexAu call third-party tools. TexAu API keys let external tools call TexAu.

Before you begin

You need the Admin or Owner role to create and manage API keys.

Create an API key

  1. Go to Settings in the left sidebar.

  2. Click API keys.

  3. Click New API key.

  4. Enter a name for the key (e.g., "Zapier integration" or "Internal pipeline").

  5. Click Generate.

  6. Copy the key immediately. TexAu shows the full key only once. After you close this dialog, only the last four characters are visible.

Store the key in a secrets manager or environment variable. Do not paste it into source code.

Use an API key

Include the API key in the Authorization header of each request to the TexAu API:

Authorization: Bearer your-api-key-here

Refer to the TexAu API documentation for the full list of available endpoints.

View existing API keys

  1. Go to Settings > API keys.

You see all active keys with:

  • Key name
  • Date created
  • Date last used
  • Last four characters of the key

The full key is never shown again after creation.

Revoke an API key

  1. Go to Settings > API keys.
  2. Find the key you want to revoke.
  3. Click Revoke next to the key.
  4. Confirm the revocation.

The key is immediately invalidated. Any application using this key will receive a 401 error on the next request.

Rotate an API key

TexAu does not support in-place key rotation. To rotate a key:

  1. Create a new API key.
  2. Update your application or script to use the new key.
  3. Revoke the old key.

Troubleshooting

I lost my API key. TexAu does not store or display the full key after creation. Revoke the lost key and generate a new one. Update your application with the new key.

API requests return a 401 error. Confirm that the key has not been revoked. Go to Settings > API keys and check the status. If the key is active, verify that your request includes the Authorization: Bearer header with no extra spaces or characters.

I see a key in the list but cannot remember what it connects to. API key names are the only identifying information once a key is created. Use descriptive names when you create keys (e.g., "Make.com workflow" or "Internal enrichment pipeline") to track their purpose later.

The Generate button is not visible. You need the Admin or Owner role to create API keys. Ask your workspace owner to grant you the required role.