{% extends "base.html" %} {% block title %}Developer Dashboard{% endblock %} {% block heading %} Developer Dashboard {% endblock %} {% block body %}

What is this?

Crabber has an open-source REST API for anyone to mess around with and make cool stuff. If you don't know what that is, you probably shouldn't poke around this page too much.
Fun fact: I actually started work on Crabber because I was building a Twitter bot and was frustrated with their developer restrictions. I decided I'd build an intentionally bad Twitter clone for laughs but got carried away and made Crabber. And here we are.


Keys and Tokens

Developer Keys

These allow your application to make requests to the server.

{% for key in developer_keys %}
{% endfor %}

Access Tokens

These give applications permissions to make actions on your behalf. Don't share these with anyone!

{% for token in access_tokens %}
{% endfor %}

Documentation

Basic API documentation can be found here: https://github.com/crabber-net/crabber-api-docs

An API Wrapper for Python can be found here: https://github.com/crabber-net/python-crabber


{% endblock %}