Data API

Access your data programmatically via this REST API endpoint. Supports filtering, pagination, and sorting.

Live
GET
/api/v1/embed/demo/data

Query Parameters

page
integer
Page number (1-indexed)
Default: 1
per_page
integer
Number of items per page (max 100)
Default: 25
sort
string
Field to sort by
order
string
Sort order: asc or desc
Default: asc
search
string
Full-text search query across searchable fields
{field}
string
Filter by any exposed field (e.g., ?category=docs)

Exposed Fields

No field mappings configured yet

Example Response

{
  "data": [
    {
      
      "id": "1",
      "title": "Getting Started Guide",
      "description": "Learn how to integrate our API into your application",
      "category": "Documentation",
      "status": "published",
      "date": "2024-01-15",
      "url": "https://example.com/docs/getting-started",
      "image": "https://example.com/img/guide.png",
      "price": "0",
      "author": "John Doe",
      "tags": "api,tutorial,beginner"
    },
    {
      
      "id": "2",
      "title": "Authentication",
      "description": "How to authenticate API requests using tokens",
      "category": "Documentation",
      "status": "published",
      "date": "2024-01-16",
      "url": "https://example.com/docs/auth",
      "image": "https://example.com/img/auth.png",
      "price": "0",
      "author": "Jane Smith",
      "tags": "api,security,auth"
    },
    {
      
      "id": "3",
      "title": "Rate Limiting",
      "description": "Understanding rate limits and best practices",
      "category": "Documentation",
      "status": "published",
      "date": "2024-01-17",
      "url": "https://example.com/docs/rate-limits",
      "image": "https://example.com/img/limits.png",
      "price": "0",
      "author": "John Doe",
      "tags": "api,limits,best-practices"
    }
  ],
  "meta": {
    "total": 5,
    "page": 1,
    "per_page": 25,
    "total_pages": 1,
    "has_next": false,
    "has_prev": false
  }
}

Authentication Optional

This API is currently open. You can optionally provide an API key for authenticated access.

Include your API key in requests using one of these methods:

X-API-Key: your_api_key Authorization: Bearer your_api_key ?api_key=your_api_key

Try It

5 Total Records
0 Exposed Fields