Contracts Feed

The business and technical details of API resources offered from across different entities operating in almost every business sector.

ContractsAPIs.json

Feed Endpoint

GET https://contracts.apievangelist.com/apis.json

No authentication required. Returns a JSON array. CORS headers are set on all feeds.

Source repository: https://github.com/api-evangelist/contracts

Response Schema

Each item in the feed has these fields:

FieldTypeDescription
aid string API identifier
name string Contract name
description string Description
tags array Tags
humanURL string Human-facing URL

Example Request

curl -s https://contracts.apievangelist.com/apis.json | head -c 500

Usage

JavaScript / Browser

const response = await fetch('https://contracts.apievangelist.com/apis.json');
const items = await response.json();

items.forEach(item => {
  console.log(item.name, item.slug);
});

Python

import requests

response = requests.get('https://contracts.apievangelist.com/apis.json')
items = response.json()

for item in items:
    print(item.get('name'), item.get('slug'))

Browse the full Contracts catalog at https://contracts.apievangelist.com/.