View App pricing details

View App pricing details

GET https://api.ocamba.com/v2/ocamba/app-store/{app_id}/pricing
Retrieves the details of a certain app pricing if a valid identifier was provided

Tip
If you don’t know the app id, list apps to find it.

Rate limits:

  • Burst: 10/s
  • Steady: 150/m

Path parameters

parameters

Query parameters

parameters

Response schemas

curl -X GET \
 "https://api.ocamba.com/v2/ocamba/app-store/{app_id}/pricing" \
  -H "Authorization: Bearer {TOKEN}"
const url = 'https://api.ocamba.com/v2/ocamba/app-store/{app_id}/pricing';
const options = {
  method: 'GET',
  headers: {
    Authorization: `Bearer {TOKEN}`
  }
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
$ch = curl_init("https://api.ocamba.com/v2/ocamba/app-store/{app_id}/pricing");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
  "Authorization: Bearer {TOKEN}"
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

Responses

200 OK

{
  "total": 4,
  "items": [
    {
      "plan": "enterprise",
      "app_id": "1003",
      "type": "deal",
      "name": "ENTERPRISE",
      "base": "business",
      "components": {
        "contact_us": [
          {
            "name": "contact us"
          }
        ],
        "features": [
          {
            "name": "Unlimited Apps"
          },
          {
            "name": "Custom Audience Segments"
          },
          {
            "name": "Custom User Data"
          },
          {
            "name": "Full Onboarding"
          },
          {
            "name": "White label domains"
          },
          {
            "name": "Self Serving Platform"
          },
          {
            "name": "Dedicated Account Manager"
          },
          {
            "name": "Integration Engineer Support"
          }
        ],
        "plan_info": [
          {
            "limit": "Over 500K Subscribers"
          }
        ]
      }
    }
  ]
}

400 Bad Request

{
  "code": 400,
  "title": "Bad request.",
  "message": "The request body is not valid.",
  "trace_id": "99a84211-f73d-4ff8-acdf-eb3e06bb9d62"
}

500 Internal Server Error

{
  "code": 500,
  "title": "Internal server error.",
  "message": "Internal server error."
}
Responses