Limim

REST API Reference

Comprehensive guide to Limim's REST API endpoints, authentication, and request structure.

Overview

The Limim REST API provides access to our platform's features through standard HTTP methods. All endpoints require authentication and are hosted at https://api.limim.com/v1. Requests and responses are formatted in JSON.

Authentication

Learn more about authentication

  • Use Bearer token authentication via Authorization: Bearer {token}
  • API keys must be obtained through your account settings
  • Rate limits: 1000 requests per minute per user

Endpoints

Endpoint Method Description
/resources GET Retrieve a list of resources
/resources/{id} GET Get details about a specific resource
/resources POST Create a new resource
/resources/{id} PUT Update an existing resource by ID

Try It Out

GET /resources
{ "Authorization": "Bearer YOUR_ACCESS_TOKEN" }\
[{"id": "1", "name": "Resource One"},{"id": "2", "name": "Resource Two"}]

Error Responses

Code Description
401 Unauthorized access
404 Resource not found
429 Rate limit exceeded
500 Internal server error