Documentation
GeneralGET

List Plans

11.1 GET /plans — list all public pricing plans (unauthenticated). Use GET /v1/plans when you need this capability from your application or backend. It does not require a request body. There are no query parameters for this operation.

Endpoint

Use this full URL directly in server-side integrations, scripts, or internal tooling.

GET request
https://api.dropfakes.com/api/v1/plans
Full endpoint URL
GET https://api.dropfakes.com/api/v1/plans

Authorization

This section explains how this endpoint should be called in the current API version.

No authorization required
This endpoint is documented as public in this version of the API reference. No bearer token is required.
Authorization
Authorization: dk_live_*****

Code examples

Start with curl, then use the language sample that matches your backend.

curl
curl -X GET "https://api.dropfakes.com/api/v1/plans"

Parameters

Query string parameters and request body fields are listed together for faster scanning.

This endpoint does not define any query parameters or body fields in the current specification.

Success response

The primary success status for this operation is 200.

Status 200
Successful Response
200 application/json
[
  {
    "id": "id_123",
    "slug": "starter",
    "name": "Primary key",
    "price": 49,
    "currency": "USD",
    "interval": "month",
    "dailyRequestLimit": 100,
    "monthlyRequestLimit": 100,
    "apiKeyLimit": 100,
    "teamMemberLimit": 100,
    "features": [
      "string"
    ],
    "featureItems": [
      {}
    ]
  }
]

Error response

Use this example to handle validation and request errors safely on the client or backend.

Status 400
Error response.
400 application/json
{}