Dedsol
  • 👀 | Overview
  • Indexer
    • 👉 | Getting Started
    • 🌐 | Rest Endpoints
      • Getting Started
      • Endpoints
    • 🔮 | GraphQL
      • Getting Started
      • Playground (GraphiQL)
    • 💰 | Pricing
      • Enteprise Plan
      • How Crediting Works
  • Miscellaneous
    • 🧭 | Roadmap
    • 🫡 | Team
    • 🤖 | Discord
    • 📍 | Directory
    • ❤️ | Support Us
Powered by GitBook
On this page
  • Base URL
  • Authorization
  • Response Format
  • Error Handling
  • Notes
  • Rate Limiting
  • Endpoints
  1. Indexer
  2. 🌐 | Rest Endpoints

Getting Started

Get started with traditional REST endpoint to get your data.

Base URL

https://data.dedsol.xyz

Authorization

You will want to populate the X-API-Key header with your API key.

{
    "X-API-Key": "dedsol-xxxxx-xxxxx-xxxx-xxxxx"
}

Response Format

All endpoints return JSON responses.

{
    "data": [...],
    "pagination": {
        "prev_cursor": string | null,
        "next_cursor": string | null,
        "total_count": number
    }
}

Error Handling

The API uses standard HTTP status codes:

  • 200: Success

  • 404: Not Found

  • 500: Internal Server Error

Error responses include a descriptive message in the response body:

{
  "error": "Detailed error message"
}

Notes

  1. All endpoints are rate-limited to 100 results per request

  2. Timestamps are returned in ISO 8601 format

  3. Numeric values for balances and IDs are returned as strings to preserve precision

  4. All POST endpoints accept either entity IDs or addresses for filtering, or both

Rate Limiting

All endpoints are limited to 100 results per request.

Note

Requests exceeding the default 100 limit will be charged an additional creddit per 100 record extract.

Example 0 - 100 Rows Extracted = 1 API Credit

200 Rows Extracted = 2 API Credits

300 Rows Extracted = 3 API Credits

Endpoints

Previous🌐 | Rest EndpointsNextEndpoints

Last updated 2 months ago

To check out all available endpoints and more information on how to query them check out our documentation.

Rest Endpoints