Properties Feed

Individual properties of API operations that can be linked to strategy, experience, and policies — and then governed to standardize how things work.

PropertiesGovernance

Feed Endpoint

GET https://properties.apievangelist.com/properties.json

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

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

OpenAPI: https://github.com/api-evangelist/properties/blob/main/openapi.yml

Response Schema

Each item in the feed has these fields:

FieldTypeDescription
name string Property name
slug string Unique slug
description string Property description
scope string Scope
tags array Tags

Example Request

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

Usage

JavaScript / Browser

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

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

Python

import requests

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

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

Browse the full Properties catalog at https://properties.apievangelist.com/.