Tiquo
Integrations OverviewAirtableAsanaSlackGoogle AnalyticsMetabaseMixpanelPendoSegmentTableau (PAT)ActiveCampaignBrevoEmarsys Core API (WSSE)EventbriteFacebookGoogle AdsHighLevelInstagramKlaviyoMailchimpMailgunMicrosoft AdsSendGridTwitter (v2)HubSpotNotionAcuity SchedulingAirtable (Personal Access Token)BasecampCal.com (v2)CalendlyClickUpCodaConfluence Data CenterExpensifyGoogle CalendarGoogle SheetHarvestLinearMicrosoft Power BIMicrosoft TeamsMindbodyMondayOpenAIPerplexityPingboardPivotal TrackerProductboardQuickbaseServiceM8ServiceNowTeamworkTickTickTimelyTodoistTrafftTrelloWrikefal.aixAIZendeskIntercomAircall (OAuth)DixaFreshDeskFreshserviceFrontPlainRingCentralZoho DeskBrazeDialpadGoogleMicrosoftOutlookPodiumSednaSharePoint OnlineTwilioWhatsApp BusinessZoho MailBambooHRADPDeelEmployment HeroGustoHibob Service UserNamelyOracle Fusion Cloud (HCM)PaychexPayfitPaylocityPersonioRipplingSAP SuccessFactorsSage HRTSheetsUKG ProUKG ReadyWorkdayZoho PeopleQuickBooksBuildiumExact OnlineFreshBooksIntuitNetSuitePennylaneSageSage IntacctTwinfieldUnanetWave AccountingXeroZoho BooksSalesforceAffinityAttioCopperFreshsalesGainsight CCInsightlyKustomerMedalliaPipedriveTwenty CRMZoomInfoApaleoMewsMicrosoft Business CentralOdooSAP ConcurZuoraAcceloCoupa CompassZoho InvoiceAnrokAvalaraDocuSignDropbox SignPandadocSignNowLinkedInSplitwiseTikTok AdsJotformQualtricsRefinerTypeformShopifyCin7 CoreGoogle MapsRingoverListrakRydooTalentLMSApple Business ManagerCrunchbaseRocketReachOcean.ioFreepikEnergy Performance Certificates (Gov.UK)JustworksGristSAP S/4HANA Cloud3CX8x8Adobe CommerceBirdCloudbedsConstant ContactBufferCustomer.ioCrispFreeAgentGreenhouseMeta Marketing APIMollienocrm.ioOomnitzaDigitsPylonSage 200ShopwareAnvilShippoEasyPostAltrataMicrosoft PeopleMicrosoft IntuneCloudTalkGoogle FormsMaximizerMicrosoft PlannerSalesmsgSellercloudTallyTimifyUpsalesCleverReachHeymarketMailjetPleoProvenExpertTelegramToggl TrackTenzoASSA ABLOY Vingcard VisionlineASSA ABLOY Vingcard VostioASSA ABLOY TESA HotelASSA ABLOY SMARTairSalto KSSalto Space OnlineDormakabaOmnitecHotekTT LockWebLockISEOKleverKeyAperioISONASHIDSouthcoThird MillenniumSTidAxis CommunicationsBooking.comExpediaHotels.comAirbnbGoogle HotelsTripadvisorAgodaHotelbedsTravelgateXHyperguestRoibosReconlineTraviaOpenGDS.comMG BedbankDidatravelHotelREZHRSHotelnetworkGetaroomWinkBookeasyVRBOInntopiaHookusbookusHipcampSpot2niteCamping VisionMinistry of VillasTrip.comTravelokaTiketMakeMyTripHoteripKlookeDreamsSzallasEmerging Travel GroupCheck24Bed-and-Breakfast.itWorld2Meet (W2M)Ctoutvert / SecureholidayDespegarPriceTravelRoombeastMitchell CorpHRS AustraliaResonlineHostelworldHostelhopTablet MichelinMr & Mrs SmithHopperHotel TonightPitchupMoveriiLocalOTAAlaricBooknpayCultbookingGuestTractionLevartWeSpeakMake.comZapierPricelabsPricepointRategenieElastic HotelRoom Price GenieTurbosuiteUber EatsDeliverooDoorDashBolt FoodGlovo
API and Authentication

API Introduction

Getting started with the Tiquo APIs

Tiquo APIs

Tiquo provides two separate REST APIs, each designed for different use cases.

Admin API

The Admin API is built for server-side integrations. It gives your backend systems programmatic access to your organization's data, including customer records, orders, bookings, and more. You authenticate with API keys that you generate from the Tiquo dashboard.

Base URL:

https://api.tiquo.app/api/v1

Customer API

The Customer API is built for customer-facing applications. It covers customer profiles, saved payment methods, orders and receipts, bookings and tickets, memberships, guest flows, wallet links, companies, enquiries, and eligible access-control features. Authentication uses JWT tokens issued through either the DOM Package or OAuth/OIDC.

Base URL:

https://edge.tiquo.app/api/client/v1

Quick Comparison

Admin APICustomer API
PurposeServer-side data managementCustomer-facing applications
AuthenticationAPI keys (Bearer token)JWT access tokens
Data scopeFull organization dataScoped to the authenticated customer, with authorised company-admin access to colleagues
CORSNot enabled (server-side only)Authenticated browser requests are supported; public enquiry submissions use configured allowed origins
Rate limit1,000 requests per key in a fixed one-hour window by default; contact Tiquo for a higher limitOperation-specific abuse protection; see each endpoint
Base URLapi.tiquo.app/api/v1edge.tiquo.app/api/client/v1

Response Format

Most successful read operations return resources under data:

Successful response:

{
  "success": true,
  "data": { ... }
}

Error response:

{
  "success": false,
  "error": "Description of what went wrong"
}

Some Customer API operations return compatibility fields at the top level. Use the response schema for the specific endpoint rather than assuming every successful response contains data.

HTTP Status Codes

CodeMeaning
200Request succeeded
400Bad request (invalid parameters or missing fields)
401Unauthorized (missing or invalid authentication)
403Forbidden (insufficient permissions)
404Resource not found
429Rate limit exceeded
500Internal server error

Pagination

Customer API orders, bookings, and enquiries use cursor-based pagination. You can control the page size with the limit parameter (default 50, max 100) and paginate using the cursor parameter.

{
  "success": true,
  "data": {
    "orders": [ ... ],
    "hasMore": true,
    "nextCursor": "order_abc123"
  }
}

To get the next page, pass the nextCursor value as the cursor query parameter in your follow-up request. When hasMore is false, you have reached the end of the results.

Other Customer API collections, such as companies, memberships, guest flows, and access groups, return bounded arrays without pagination metadata. Check the documentation for each operation before implementing pagination.

En esta página