DailyAPI Documentationv1
Resources

Business

Retrieve identity and contact data for the business bound to the API key.

View OpenAPI

Permission: פרטי העסק (business:read)

Retrieve the business

GET /business

This endpoint accepts no query parameters. It resolves business scope from the authenticated key and returns the active business only.

set -euo pipefail
: "${DAILY_API_KEY:?DAILY_API_KEY is required}"
curl --fail-with-body --silent --show-error \
  --header "Authorization: Bearer ${DAILY_API_KEY}" \
  --header 'Accept: application/json' \
  'https://api.godaily.co.il/v1/business'
{
  "data": {
    "id": "0b703598-20d1-4eeb-9012-12db41ac8018",
    "object": "business",
    "name": "סטודיו נורת׳סטאר בע״מ",
    "english_name": "Northstar Studio Ltd.",
    "business_number": "515990281",
    "business_type": "company",
    "email": "finance@northstar.test",
    "phone": "+972-3-555-0142",
    "address": { "street": "HaArba’a 28", "city": "Tel Aviv-Yafo", "postal_code": "6473925", "country": "IL" },
    "created_at": "2025-02-03T08:30:00.000Z",
    "updated_at": "2026-07-21T11:45:00.000Z"
  },
  "request_id": "req_docsbusiness001"
}

english_name, business_number, email, phone, and address fields can be null. country is currently IL.

Verified errors include authentication and subscription failures, IP or permission denial, invalid query parameters, rate limiting, not found, and internal or upstream failure.

Direct browser request

API playground

Memory only

Your key stays only in this React page’s memory and is sent directly to Daily API. It is not persisted, placed in a URL, logged, or sent to analytics. Refreshing or closing this page clears it.

GEThttps://api.godaily.co.il/v1/business

On this page