---
title: API Docs - API Definitions
section: API Definitions
permalink: /apidefinitions/
---
While the condenser_api.*
calls are ready for use, all other appbase methods are currently works in progress and may change, or be unsuitable for production use.
{% assign sorted_collections = site.collections | where:'title', "API Definitions" %}
{% for collection in sorted_collections %}
{% assign sorted_docs = collection.docs | sort: "position" %}
{% for doc in sorted_docs %}
{% if doc.description %}
{{doc.description}}
{% endif %}
{{ doc.content | replace: "", "Parameters
" }}
{% endfor %}
{% endfor %}