If you’re new to Unstructured, read this note first.Before you can create a destination connector, you must first sign in to your Unstructured account:
- If you do not already have an Unstructured account, sign up for free. After you sign up, you are automatically signed in to your new Unstructured Starter account, at https://platform.unstructured.io. To sign up for a Team or Enterprise account instead, contact Unstructured Sales, or learn more.
- If you already have an Unstructured Starter or Team account and are not already signed in, sign in to your account at https://platform.unstructured.io. For an Enterprise account, see your Unstructured account administrator for instructions, or email Unstructured Support at support@unstructured.io.
-
After you sign in to your Unstructured Starter account, click API Keys on the sidebar.
For a Team or Enterprise account, before you click API Keys, make sure you have selected the organizational workspace you want to create an API key for. Each API key works with one and only one organizational workspace. Learn more. -
Click Generate API Key.
-
Follow the on-screen instructions to finish generating the key.
-
Click the Copy icon next to your new key to add the key to your system’s clipboard. If you lose this key, simply return and click the Copy icon again.
- A MotherDuck account.
- A MotherDuck access token for the account.
- A database in the account. You can run commands to manage MotherDuck databases, schemas, tables, and more in the MotherDuck UI or for example by connecting to MotherDuck with the DuckDB CLI.
-
A schema in the target database.
- Create a schema.
-
You can list available schemas and their parent catalogs by running the following command in the MotherDuck UI or the DuckDB CLI:
main
if not otherwise specified. -
A table in the target schema.
- Create a table.
-
You can list available tables in a schema by running the following commands in the MotherDuck UI or the DuckDB CLI, replacing the target catalog and schema names:
elements
if not otherwise specified. For maximum compatibility, Unstructured recommends the following table schema:You can list the schema of a table by running the following commands in the MotherDuck UI or the DuckDB CLI, replacing the target catalog, schema, and table names:
<name>
(required): A unique name for this connector.<database>
(required): The name of the target MotherDuck database.<db-schema>
(required): The name of the target schema within the database.<table>
The name of the target table within the schema. By default, this table is namedelements
if not otherwise specified.<md-token>
(required): The access token value within the MotherDuck account that has the appropriate access to the target database, schema, and table.