Cyclr Community
  • Forums
  • Tutorials
  • Documentation
    • User Documentation
    • Connector Guides
  • Resources
    • New Features
    • Blog
    • Changelog
    • Support Portal
    • Newsletter Archive
    Sign in
    Cyclr Logo
    Cyclr Logo
    • Forums
    • Tutorials
    • Documentation
      • User Documentation
      • Connector Guides
    • Resources
      • New Features
      • Blog
      • Changelog
      • Support Portal
      • Newsletter Archive

    About Cyclr

    6
    • Introduction to Cyclr
    • Minimum requirements
    • Glossary
    • Errors
    • IP Allow List
    • Legal notices

    Cyclr Console

    14
    • Partner Console Dashboard
    • The Builder
    • Reports
    • Console Configuration
    • General Settings
    • Notifications
    • Embedding Customization
    • Security settings
    • Data retention settings
    • Custom Service Domains
    • Handle transaction errors
    • Payload Size Limitations
    • Performance tips
    • GitHub Integration

    Connectors

    33
    • Introduction to Connectors
    • Connectivity Comparison
    • Connector Guides
    • Application Connectors
      • Introduction to Application Connectors
    • Utility Connectors
      • Introduction to Utility Connectors
      • Counter Storage
      • Cross Updating Preventer
      • Data Tools
      • Entity Cross Ref Storage
      • Generic File
      • Generic File Downloader
      • Generic Form
      • Generic Webhook
      • Data Storage
        • Introduction to Data Storage Connectors
        • Global Data Storage
        • Global Object Storage
        • Cycle Data Storage
        • Cycle Object Storage
    • Custom Connectors
      • Introduction to Custom Connectors
      • Methods
      • Triggers
      • Last Successful Run Date
      • Parameters
      • Scripting
      • Data Types
      • Paging
      • Custom Objects
      • Dynamic Custom Fields
      • Automatically Install Webhooks
      • Connector Standards
      • Settings
      • Authentication
      • Rate Limits

    Templates

    17
    • Introduction to Templates
    • Template Settings
    • Create a Template
    • Tools
    • Connectivity Tools
    • Map fields
    • Add custom fields
    • Custom Object Method Categories
    • Test Scripts
    • Collection splitting
    • Pass data between two steps
    • Test a template
    • Template versioning
    • Introduction to Cycles
    • Stop a cycle
    • Copy Cycles as Templates
    • Import or Export Templates

    Accounts

    5
    • Introduction to Accounts
    • Account Users
    • Sub Accounts
    • Connector Authentication Link
    • Export or Import Cycles

    Embedding

    17
    • Introduction to Embedding
    • ORBIT
    • Installing a Partner Connector
    • Embed Cyclr in an iFrame
    • Launch
      • Introduction to Launch
      • User Experience
      • Customize Appearance
      • Build Compatible Templates
      • Handle LAUNCH callbacks
      • Deploy LAUNCH
    • Marketplace
      • Introduction to Marketplace
      • Set up a Marketplace
      • Styling Marketplace
      • Deploying a Marketplace
      • Marketplace Callback
      • Marketplace Webhook Callback
      • Marketplace Settings

    API

    19
    • Introduction to the Cyclr API
    • Authentication
    • Authorize Account API calls
    • Install Connectors into an Account
    • Install a Cycle from a Template
    • Step Setup
    • Activate a Cycle
    • Install Connectors
    • Create an Account
    • API Example Walkthrough
    • Connector Authentication
      • Introduction to Connector Authentication
      • API Key Authentication
      • HTTP Basic Authentication
      • OAuth Authentication
    • Data on Demand
      • Introduction to Data on Demand
      • Get Account Connectors
      • Get Connector Methods
      • Call a Connector Method
      • IP Restriction

    Release Notes

    28
    • Introduction to Release Notes
    • 2025
      • 2025-06
      • 2025-05
      • 2025-04
      • 2025-03
      • 2025-02
      • 2025-01
    • 2024
      • 2024-12
      • 2024-11
      • 2024-10
      • 2024-09
      • 2024-08
      • 2024-07
      • 2024-06
      • 2024-05
      • 2024-04
      • 2024-03
      • 2024-02
      • 2024-01
    • 2023
      • 2023-12
      • 2023-11
      • 2023-10
      • 2023-06
      • 2023-05
      • 2023-04
    • Archive
      • Archive
      • 2022
      • 2021
    View Categories
    • Home
    • Documentation
    • Connectors
    • Custom Connectors
    • Rate Limits

    Rate Limits

    3 min read

    Overview #

    To avoid Cyclr making calls to external systems faster than they will allow – or perhaps can process – you can define Rate Limits on your Custom Connectors.

    A system might publish their API limits in their documentation, e.g. 1,000 Requests/Second, or up to 1,000,000 Requests/24 hours.

    You can create Rate Limits on a Connector Release at the overall Connector-level as well as at the Method-level. This allows general limits used by an API to be set globally on a Connector, and then gives you the ability to override them for a particular Method.

    Some external systems provide different limits on different parts of their API so being able to set Rate Limits at different levels of a Connector allows Cyclr to respect and work within those limits.

    When running Templates and Cycles, Cyclr records how many API calls it’s made and will pause if making further calls would exceed any related Rate Limits on the Connector. This results in API calls being queued until the Rate Limits indicate it’s okay to continue making calls.

    This is all automatic within Cyclr and doesn’t require any intervention by the user.

    Note: November 2024: Rate Limits have been improved!

    Rate Limits created on Custom Connectors or Library Connectors before mid-November 2024 will continue to function as before. Rate Limits created after then will function as described in this article.

    Pre-November 2024 behaviour is for Cyclr to gather Connector-level and Method-level Rate Limits and apply only the most restrictive Rate Limit.

    Specifiying a Rate Limit #

    When working on a Custom Connector, you can specify Rate Limits as appropriate to the system your Connector will be calling. These are usually explained within the documentation of an API.

    Go to your Cyclr Console, then Connectors > Custom Connectors and edit a Draft Release of your Connector.

    • If you’re adding a Rate Limit that applies to all of your Connector’s Methods, go to the Connector-level “Rate Limits” tab.
    • If you’re adding a Rate Limit that only applies to a specific Connector Method, go to the “Methods” tab, locate that Method and edit it, then go to its “Rate Limits” tab.

    Cyclr’s Rate Limits can be specified in two ways – which you use depends on which better fits the limits of the API you’re working with:

    • Maximum Requests Per Time Frame
    • Time Between Requests

    Maximum Requests Per Time Frame #

    This allows you to specify the number of calls Cyclr can make within a set period of time, e.g.:

    • Up to 1,000 Requests every 1 Second
    • Up to 10,000 Requests every 60 Minutes

    The smallest Time Unit available here is Seconds.

    Time Between Requests #

    This allows you to have Cyclr wait between each call, e.g.:

    • 1 Request every 500 Milliseconds
    • 1 Request every 5 Seconds

    The smallest Time Unit available here is Milliseconds.

    When Multiple Rate Limits Apply #

    If Rate Limits are defined at both the Connector-level and Method-level, Cyclr will retrieve all the related limits when executing a Connector Method and use the most restrictive limit to determine whether it can make a call now or must wait.

    When the Rate Limits allow the call to go ahead, Cyclr will record the activity which will go towards those related limits for future Rate Limit calculations.

    Some APIs provide a daily limit and also a “burst limit”, allowing systems like Cyclr to make lots of calls over a whole day, but restricting them from all being used within a short space of time.

    An example might be 100,000 calls each day, but no more than 100 calls within 1 minute.

    That could be implemented as 2 separate Connector-level Rate Limits:

    1. Connector-level Rate Limit for “Maximum Requests Per Time Frame” of 100,000 Requests/24 hours.
    2. Connector-level Rate Limit for “Maximum Requests Per Time Frame” of 100 Requests/1 minute.

    Overriding Connector-level Rate Limits #

    Method-level Rate Limits have an additional option called Override Connector Rate Limits?

    Turning this on will ignore any Connector-level Rate Limits and only use those defined at the Method-level.

    If no Rate Limits have been set at the Method-level, no rate limiting will occur, resulting in Cyclr making calls to that Method as quickly as it can.

    Calls to Methods with that option enabled won’t be counted towards any other Rate Limits of that Connector so there’s no impact on other Methods.

    Custom “Retry After” Header #

    Not all APIs provide this, but when some are receiving requests too quickly for them to process, they may return “429 Too Many Requests” errors. They usually include a Retry-After HTTP Header which contains a time value indicating when it’ll start accepting requests again which Cyclr will automatically use.

    If an API uses a different HTTP Header for this, you can provide its name in the Custom Retry After Header field.

    Note: The value is case-sensitive so must exactly match the name of the HTTP Header that API uses.

    Share This Article :
    • Facebook
    • X
    • LinkedIn
    • Pinterest
    Authentication
    Page Contents
    • Overview
    • Specifiying a Rate Limit
      • Maximum Requests Per Time Frame
      • Time Between Requests
    • When Multiple Rate Limits Apply
    • Overriding Connector-level Rate Limits
    • Custom “Retry After” Header

    Company

    • Company
    • About Us
    • Security and Compliance
    • Pricing
    • Blog
    • Branding
    • Embedded iPaaS

    Legal

    • Website Terms
    • Privacy Policy
    • Terms and Conditions
    • Data Protection Agreement
    • SLA
    • GDPR

    UK Office

    +44 (0) 3300 102 525

    US Office

    +1 (646) 585-2525


    White labelled API integration framework for creating & managing in-app SaaS integrations.

    © 2025 Cyclr. All rights reserved.