Skip to content

Connectors

fyrn provides pre-built connectors for popular platforms. Each connector handles authentication, API versioning, rate limiting, and schema tracking.

ConnectorTypeAuthAPI Version
ShopifyE-CommerceOAuth22024-10
SAP Business OneERPAPI Key + Certificate10.0
SalesforceCRMOAuth2v59.0
HubSpotCRM / MarketingOAuth2v3
StripePaymentsAPI Key2024-12
NetSuiteERP / AccountingOAuth1 + TBA2024.1
ShipStationFulfillmentAPI Keyv3
SlackCommunicationOAuth2v2
JiraProject ManagementOAuth2v3
Terminal window
fyrn connector add <name>

Define custom connectors in YAML:

connectors/custom-api.yaml
name: custom-api
type: REST
base_url: https://api.example.com/v1
auth:
type: api_key
header: X-API-Key
endpoints:
- name: orders.list
method: GET
path: /orders
- name: orders.create
method: POST
path: /orders