Libraries tagged by api-endpoints

salimsaid/oxo-response

0 Favers
283 Downloads

Clean and beautiful Api endpoints formatting for your projects

Go to Download


ride/wra-i18n

1 Favers
598 Downloads

I18n JSON API endpoints of a Ride application

Go to Download


ride/wra-app

0 Favers
22 Downloads

Application JSON API endpoints of a Ride application

Go to Download


reiterus/informer-magento

2 Favers
2 Downloads

Get Magento 2 store information from REST API endpoints

Go to Download


pterodactyl-cn/api-cors-fix

0 Favers
2 Downloads

Fix CORS for API Endpoint

Go to Download


plhw/hf-api-client

0 Favers
761 Downloads

PLHW API Client provides means to authenticate clients against with OAuth2 server and issue authorized requests to our api endpoints

Go to Download


piurafunk/docker-php

0 Favers
8 Downloads

The Engine API is an HTTP API served by Docker Engine. It is the API the Docker client uses to communicate with the Engine, so everything the Docker client can do can be done with the API. Most of the client's commands map directly to API endpoints (e.g. `docker ps` is `GET /containers/json`). The notable exception is running containers, which consists of several API calls. # Errors The API uses standard HTTP status codes to indicate the success or failure of the API call. The body of the response will be JSON in the following format: ``` { "message": "page not found" } ``` # Versioning The API is usually changed in each release, so API calls are versioned to ensure that clients don't break. To lock to a specific version of the API, you prefix the URL with its version, for example, call `/v1.30/info` to use the v1.30 version of the `/info` endpoint. If the API version specified in the URL is not supported by the daemon, a HTTP `400 Bad Request` error message is returned. If you omit the version-prefix, the current version of the API (v1.40) is used. For example, calling `/info` is the same as calling `/v1.40/info`. Using the API without a version-prefix is deprecated and will be removed in a future release. Engine releases in the near future should support this version of the API, so your client will continue to work even if it is talking to a newer Engine. The API uses an open schema model, which means server may add extra properties to responses. Likewise, the server will ignore any extra query parameters and request body properties. When you write clients, you need to ignore additional properties in responses to ensure they do not break when talking to newer daemons. # Authentication Authentication for registries is handled client side. The client has to send authentication details to various endpoints that need to communicate with registries, such as `POST /images/(name)/push`. These are sent as `X-Registry-Auth` header as a Base64 encoded (JSON) string with the following structure: ``` { "username": "string", "password": "string", "email": "string", "serveraddress": "string" } ``` The `serveraddress` is a domain/IP without a protocol. Throughout this structure, double quotes are required. If you have already got an identity token from the [`/auth` endpoint](#operation/SystemAuth), you can just pass this instead of credentials: ``` { "identitytoken": "9cbaf023786cd7..." } ```

Go to Download


orbital-flight/craft-celigo

0 Favers
0 Downloads

Connect to a custom Celigo My API endpoint.

Go to Download


opqclick/currency-converter

0 Favers
4 Downloads

The task is to create a Laravel package, this packagewill expose an API GET endpoint that will receive thefollowing params:● amount● currency to exchangeYou can assume the default currency is Euro.This endpoint should return the exchange rate for thegiven amount in the same standard format as theother API endpoints.The package must fetch the exchange rate of the dayfrom the European Central Bank daily reference.The package must have unit tests documentationand a readme.md file.The package must be installed with composer as alocal dependency.

Go to Download


ontariotechu/xmodule

1 Favers
186 Downloads

Utility classes for easily and consistently scaffolding API endpoints for Modo Labs XModule

Go to Download


nodeum-io/nodeum-sdk-php

0 Favers
0 Downloads

The Nodeum API makes it easy to tap into the digital data mesh that runs across your organisation. Make requests to our API endpoints and we’ll give you everything you need to interconnect your business workflows with your storage. All production API requests are made to: http://nodeumhostname/api/ The current production version of the API is v1. **REST** The Nodeum API is a RESTful API. This means that the API is designed to allow you to get, create, update, & delete objects with the HTTP verbs GET, POST, PUT, PATCH, & DELETE. **JSON** The Nodeum API speaks exclusively in JSON. This means that you should always set the Content-Type header to application/json to ensure that your requests are properly accepted and processed by the API. **Authentication** All API calls require user-password authentication. **Cross-Origin Resource Sharing** The Nodeum API supports CORS for communicating from Javascript for these endpoints. You will need to specify an Origin URI when creating your application to allow for CORS to be whitelisted for your domain. **Pagination** Some endpoints such as File Listing return a potentially lengthy array of objects. In order to keep the response sizes manageable the API will take advantage of pagination. Pagination is a mechanism for returning a subset of the results for a request and allowing for subsequent requests to “page” through the rest of the results until the end is reached. Paginated endpoints follow a standard interface that accepts two query parameters, limit and offset, and return a payload that follows a standard form. These parameters names and their behavior are borrowed from SQL LIMIT and OFFSET keywords. **Versioning** The Nodeum API is constantly being worked on to add features, make improvements, and fix bugs. This means that you should expect changes to be introduced and documented. However, there are some changes or additions that are considered backwards-compatible and your applications should be flexible enough to handle them. These include: - Adding new endpoints to the API - Adding new attributes to the response of an existing endpoint - Changing the order of attributes of responses (JSON by definition is an object of unordered key/value pairs) **Filter parameters** When browsing a list of items, multiple filter parameters may be applied. Some operators can be added to the value as a prefix: - `=` value is equal. Default operator, may be omitted - `!=` value is different - `>` greater than - `>=` greater than or equal - `=` lower than or equal - `>

Go to Download


nickjbedford/laravel-endpoints

1 Favers
80 Downloads

The Laravel Endpoints framework provides an easy way to implement API endpoints in separate Responsable-style classes.

Go to Download


nestboxphp/weaver

0 Favers
0 Downloads

An API endpoint management system for easy REST API building

Go to Download


nefedov89/wasp-integration

0 Favers
25 Downloads

Laravel API endpoints wrapper for WASP inventory system https://dri.waspinventorycloud.com

Go to Download


mykehowells/httpeep

0 Favers
5 Downloads

PHP HTTP client for API endpoint/resource requests

Go to Download


<< Previous Next >>