If you’re new to Unstructured, read this note first.Before you can create a source connector, you must first sign up for Unstructured and get your
Unstructured API key. After you sign up, the Unstructured user interface (UI) appears, which you use to get the key.
To learn how, watch this 40-second how-to video.After you create the source connector, add it along with a
destination connector to a workflow.
Then run the worklow as a job. To learn how, try out the
hands-on Workflow Endpoint quickstart,
go directly to the quickstart notebook,
or watch the two 4-minute video tutorials for the Unstructured Python SDK.You can also create source connectors with the Unstructured user interface (UI).
Learn how.If you need help, reach out to the community on Slack, or
contact us directly.You are now ready to start creating a source connector! Keep reading to learn how.
- To get a list of available source connectors, use the
UnstructuredClientobject’ssources.list_sourcesfunction (for the Python SDK) or theGETmethod to call the/sourcesendpoint (forcurlor Postman). Learn more. - To get information about a source connector, use the
UnstructuredClientobject’ssources.get_sourcefunction (for the Python SDK) or theGETmethod to call the/sources/<connector-id>endpoint (forcurlor Postman). Learn more. - To create a source connector, use the
UnstructuredClientobject’ssources.create_sourcefunction (for the Python SDK) or thePOSTmethod to call the/sourcesendpoint (forcurlor Postman). Learn more. - To update a source connector, use the
UnstructuredClientobject’ssources.update_sourcefunction (for the Python SDK) or thePUTmethod to call the/sources/<connector-id>endpoint (forcurlor Postman). Learn more. - To delete a source connector, use the
UnstructuredClientobject’ssources.delete_sourcefunction (for the Python SDK) or theDELETEmethod to call the/sources/<connector-id>endpoint (forcurlor Postman). Learn more.
- Azure (
AZUREfor the Python SDK orazureforcurland Postman) - Box (
BOXfor the Python SDK orboxforcurland Postman) - Confluence (
CONFLUENCEfor the Python SDK orconfluenceforcurland Postman) - Couchbase (
COUCHBASEfor the Python SDK orcouchbaseforcurland Postman) - Databricks Volumes (
DATABRICKS_VOLUMESfor the Python SDK ordatabricks_volumesforcurland Postman) - Dropbox (
DROPBOXfor the Python SDK ordropboxforcurland Postman) - Elasticsearch (
ELASTICSEARCHfor the Python SDK orelasticsearchforcurland Postman) - Google Cloud Storage (
GCSfor the Python SDK orgcsforcurland Postman) - Google Drive (
GOOGLE_DRIVEfor the Python SDK orgoogle_driveforcurland Postman) - Jira (
JIRAfor the Python SDK orjiraforcurland Postman) - Kafka (
KAFKA_CLOUDfor the Python SDK orkafka-cloudforcurland Postman) - Local (Supported only for
curland Postman) - MongoDB (
MONGODBfor the Python SDK ormongodbforcurland Postman) - OneDrive (
ONEDRIVEfor the Python SDK oronedriveforcurland Postman) - Outlook (
OUTLOOKfor the Python SDK oroutlookforcurland Postman) - PostgreSQL (
POSTGRESfor the Python SDK orpostgresforcurland Postman) - S3 (
S3for the Python SDK ors3forcurland Postman) - Salesforce (
SALESFORCEfor the Python SDK orsalesforceforcurland Postman) - SharePoint (
SHAREPOINTfor the Python SDK orsharepointforcurland Postman) - Snowflake (
SNOWFLAKEfor the Python SDK orsnowflakeforcurland Postman) - Zendesk (
ZENDESKfor the Python SDK orzendeskforcurland Postman)

