Address Book

General

Contact list with personal details

Locale
EN
Fields
8
Uses
0
Sign in to use template

Schema fields

id sequence
email email
group enum
notes sentence
phone phone
address object
birthday date
first_name name

Schema definition

json
{
  "id": {
    "type": "sequence",
    "options": {
      "start": 1
    }
  },
  "email": {
    "type": "email"
  },
  "group": {
    "type": "enum",
    "options": {
      "values": [
        "Family",
        "Friends",
        "Work",
        "Other"
      ]
    }
  },
  "notes": {
    "type": "sentence"
  },
  "phone": {
    "type": "phone"
  },
  "address": {
    "type": "object",
    "properties": {
      "city": {
        "type": "city"
      },
      "street": {
        "type": "street"
      },
      "zipcode": {
        "type": "zipcode"
      }
    }
  },
  "birthday": {
    "type": "date",
    "options": {
      "to": "2005-12-31",
      "from": "1960-01-01"
    }
  },
  "first_name": {
    "type": "name"
  }
}

Example API call

terminal
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.apiryner.com/v1/layouts/contact?count=5&locale=en"