Skip to main content
GET
/
entitlements
JavaScript
import DodoPayments from 'dodopayments';

const client = new DodoPayments({
  bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});

// Automatically fetches more pages as needed.
for await (const entitlement of client.entitlements.list()) {
  console.log(entitlement.id);
}
{
  "items": [
    {
      "business_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "id": "<string>",
      "integration_config": {
        "permission": "pull",
        "target_id": "<string>"
      },
      "integration_type": "discord",
      "is_active": true,
      "metadata": {},
      "name": "<string>",
      "updated_at": "2023-11-07T05:31:56Z",
      "description": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dodopayments.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page_size
integer<int32>

Page size (default 10, max 100)

Required range: x >= 0
page_number
integer<int32>

Page number (default 0)

Required range: x >= 0
integration_type
enum<string>

Filter by integration type

Available options:
discord,
telegram,
github,
figma,
framer,
notion,
digital_files,
license_key

Response

items
object[]
required
Last modified on May 6, 2026