RCUR API docs
Back to RCURSupport
  • Getting Started
    • Authentication
    • Rate limits
  • Customers API
    • List customers
    • Get customer
    • Create customer
    • Update customer
    • Delete customer
  • Customer Mandates API
    • List mandates
    • Get mandate
    • Create mandate
    • Revoke mandate
  • Subscriptions API
    • List subscriptions
    • Get subscription
    • Create subscription
    • Cancel subscription
  • Links API
    • List links
    • Get link
    • Delete link
  • Follow-ups API
    • List follow-ups
    • Get follow-up
    • Update follow-up
  • Orders API
    • List orders
    • Get order
  • Products API
    • List products
    • Get product
    • Create product
    • Update product
    • Delete product
  • Payments API
    • List payments
    • Get payment
  • Organizations API
    • Me
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Getting Started

Authentication

Last updated 3 months ago

Was this helpful?

To use our API, you'll need to generate an API key in your RCUR account. You can do this on the .

The API key must be sent along with each API request, by providing it in the HTTP call’s Authorization header using the Bearer method. For example: a valid Authorization header is Bearer xsDOtmnkVtjNVWXLSlXsM

In the example below we use an API key on the GET method of the customers resource. This method fetches a customer.

curl -X GET https://rcur.app/api/v2/customers/YJRQAMRQ6y \
    -H "Authorization: Bearer xsDOtmnkVtjNVWXLSlXsM"

integrations page