How to see my org's Content Type Limit usage

I’ve been messing around with content type migrations and recently hit my org’s Content Type limit. How can I see how many Content Types my org is using across all my spaces?

Hi @charlie !

I apologize for the delay. I think you can see it only per space. This GET: /spaces/{space_id}/content_types?access_token={access_token} should return something like:

  "total": 4,
  "skip": 0,
  "limit": 100,
  "items":
...

I added a query parameter limit=1000 and got

	"total": 13,
	"skip": 0,
	"limit": 1000,
	"items": [

so I think that’s actually related to pagination and I don’t think it accurately shows to actual limits imposed by Contentful.