Skip to main content

Quickstart

This quickstart shows how to get started with the Exorde API using curl.

Instructions

The API base url is: https://api.exorde.io

API responses are json objects, with the application/json content type.

By default the API does not always return the full ressources representation. Only most importants fields are returned by default. You can ask for more fields, or even all fields using the query parameter additionalFields. You can see all available fields in the API reference.

Fields that are always returned are marqued as required in the response schema.

Examples

cURL

curl \
--url https://api.exorde.io/posts \
--header "X-Exorde-Api-Version: v1" \
--header "Accept: application/json" \
--header "Authorization: Bearer <api-key>"