Agicap Dynamic data API

The Dynamic data API from Agicap — 9 operation(s) for dynamic data.

Operations 13

GET /public/httpbin/v1/base64/{value} Decodes base64url-encoded string.
GET /public/httpbin/v1/bytes/{n} Returns n random bytes generated with given seed
DELETE /public/httpbin/v1/delay/{delay} Returns a delayed response (max of 10 seconds).
GET /public/httpbin/v1/delay/{delay} Returns a delayed response (max of 10 seconds).
PATCH /public/httpbin/v1/delay/{delay} Returns a delayed response (max of 10 seconds).
POST /public/httpbin/v1/delay/{delay} Returns a delayed response (max of 10 seconds).
PUT /public/httpbin/v1/delay/{delay} Returns a delayed response (max of 10 seconds).
GET /public/httpbin/v1/drip Drips data over a duration after an optional initial delay.
GET /public/httpbin/v1/links/{n}/{offset} Generate a page containing n links to other pages which do the same.
GET /public/httpbin/v1/range/{numbytes} Streams n random bytes generated with given seed, at given chunk size per packet.
GET /public/httpbin/v1/stream-bytes/{n} Streams n random bytes generated with given seed, at given chunk size per packet.
GET /public/httpbin/v1/stream/{n} Stream n JSON responses
GET /public/httpbin/v1/uuid Return a UUID4.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/agicap-dynamic-data-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

agicap-dynamic-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact: {}
  title: Clients AR Account reports Dynamic data API
  version: v1
servers:
- url: https://api.agicap.com
- url: https://api.agicap.internal
tags:
- name: Dynamic data
paths:
  /public/httpbin/v1/base64/{value}:
    get:
      parameters:
      - in: path
        name: value
        required: true
        schema:
          default: SFRUUEJJTiBpcyBhd2Vzb21l
          type: string
      responses:
        '200':
          description: Decoded base64 content.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Decodes base64url-encoded string.
      tags:
      - Dynamic data
  /public/httpbin/v1/bytes/{n}:
    get:
      parameters:
      - in: path
        name: n
        required: true
        schema:
          type: int
      responses:
        '200':
          description: Bytes.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Returns n random bytes generated with given seed
      tags:
      - Dynamic data
  /public/httpbin/v1/delay/{delay}:
    delete:
      parameters:
      - in: path
        name: delay
        required: true
        schema:
          type: int
      responses:
        '200':
          description: A delayed response.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Returns a delayed response (max of 10 seconds).
      tags:
      - Dynamic data
    get:
      parameters:
      - in: path
        name: delay
        required: true
        schema:
          type: int
      responses:
        '200':
          description: A delayed response.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Returns a delayed response (max of 10 seconds).
      tags:
      - Dynamic data
    patch:
      parameters:
      - in: path
        name: delay
        required: true
        schema:
          type: int
      responses:
        '200':
          description: A delayed response.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Returns a delayed response (max of 10 seconds).
      tags:
      - Dynamic data
    post:
      parameters:
      - in: path
        name: delay
        required: true
        schema:
          type: int
      responses:
        '200':
          description: A delayed response.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Returns a delayed response (max of 10 seconds).
      tags:
      - Dynamic data
    put:
      parameters:
      - in: path
        name: delay
        required: true
        schema:
          type: int
      responses:
        '200':
          description: A delayed response.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Returns a delayed response (max of 10 seconds).
      tags:
      - Dynamic data
  /public/httpbin/v1/drip:
    get:
      parameters:
      - description: The amount of time (in seconds) over which to drip each byte
        in: query
        name: duration
        schema:
          default: 2
          type: number
      - description: The number of bytes to respond with
        in: query
        name: numbytes
        schema:
          default: 10
          type: integer
      - description: The response code that will be returned
        in: query
        name: code
        schema:
          default: 200
          type: integer
      - description: The amount of time (in seconds) to delay before responding
        in: query
        name: delay
        schema:
          default: 2
          type: number
      responses:
        '200':
          description: A dripped response.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Drips data over a duration after an optional initial delay.
      tags:
      - Dynamic data
  /public/httpbin/v1/links/{n}/{offset}:
    get:
      parameters:
      - in: path
        name: n
        required: true
        schema:
          type: int
      - in: path
        name: offset
        required: true
        schema:
          type: int
      responses:
        '200':
          description: HTML links.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Generate a page containing n links to other pages which do the same.
      tags:
      - Dynamic data
  /public/httpbin/v1/range/{numbytes}:
    get:
      parameters:
      - in: path
        name: numbytes
        required: true
        schema:
          type: int
      responses:
        '200':
          description: Bytes.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Streams n random bytes generated with given seed, at given chunk size per packet.
      tags:
      - Dynamic data
  /public/httpbin/v1/stream-bytes/{n}:
    get:
      parameters:
      - in: path
        name: n
        required: true
        schema:
          type: int
      responses:
        '200':
          description: Bytes.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Streams n random bytes generated with given seed, at given chunk size per packet.
      tags:
      - Dynamic data
  /public/httpbin/v1/stream/{n}:
    get:
      parameters:
      - in: path
        name: n
        required: true
        schema:
          type: int
      responses:
        '200':
          description: Streamed JSON responses.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Stream n JSON responses
      tags:
      - Dynamic data
  /public/httpbin/v1/uuid:
    get:
      responses:
        '200':
          description: A UUID4.
        '401':
          description: Unauthorized request.
        '403':
          description: Forbidden request.
        '429':
          description: Too many requests. Please try again later.
      security:
      - client_credentials:
        - agicap:public-api
      - bearerAuth: []
      summary: Return a UUID4.
      tags:
      - Dynamic data
components:
  securitySchemes:
    bearer:
      bearerFormat: JWT
      scheme: bearer
      type: http
    bearerAuth:
      bearerFormat: OPAQUE
      scheme: bearer
      type: http