v3 Subscription

This endpoint enables you to get info about your subscription plan.

Check your subscription plan information

GET https://v3-api.newscatcherapi.com/api/subscription

{
  "active": true,
  "concurrent_calls": 10,
  "plan": "v3_nlp_embeddings",
  "plan_calls": 100000,
  "remaining_calls": 99988,
  "historical_days": 2000
}

Check your subscription plan information

POST https://v3-api.newscatcherapi.com/api/subscription

{
  "active": true,
  "concurrent_calls": 10,
  "plan": "v3_nlp_embeddings",
  "plan_calls": 100000,
  "remaining_calls": 99988,
  "historical_days": 2000
}

Successful Request Response

{
  "active": true,
  "concurrent_calls": 10,
  "plan": "v3_nlp_embeddings",
  "plan_calls": 100000,
  "remaining_calls": 99988,
  "historical_days": 2000
}

Last updated