Zoho logo

Get Account by ID (Zoho CRM)

Zoho CRMGet Account by ID (Zoho CRM)

POST/v1/zoho-get-account-by-id
texau__zoho-get-account-by-idcrm
cURL · api.texau.app
84ms
POST/v1/zoho-get-account-by-id
{
  "account_id": "Acme, Inc."
}
200 Accepted
{
  "ok": true,
  "data": {
    "account_id": 1,
    "account_name": 1,
    "account_number": 1,
    "account_site": 1,
    "account_type": 1,
    "industry": "sample",
    "annual_revenue": 1,
    "rating": "sample",
    "mobile_number": "sample",
    "fax": "sample",
    "website": "https://acme.com",
    "ticker_symbol": "sample",
    "ownership": "sample",
    "employee": 1,
    "sic_code": "sample",
    "billing_street": "sample",
    "billing_city": "sample",
    "billing_state": "sample",
    "billing_code": "sample",
    "billing_country": 1,
    "shipping_street": "sample",
    "shipping_city": "sample",
    "shipping_state": "sample",
    "shipping_code": "sample",
    "shipping_country": 1,
    "description": "sample",
    "owner_id": "rec_4f3a91",
    "owner_name": "sample",
    "owner_email": "[email protected]",
    "parent_account_id": 1,
    "parent_account_name": 1,
    "created_by_id": "rec_4f3a91",
    "created_by_name": "sample",
    "modified_by_id": "rec_4f3a91",
    "modified_by_name": "sample",
    "record_status": "valid",
    "is_locked": true,
    "created_time": "sample",
    "modified_time": "sample",
    "last_activity_time": "sample"
  }
}

Retrieve details of a specific account using its unique Zoho Record ID.

Install

Add get account by id (zoho crm) to your MCP client.

Drop this into claude_desktop_config.json (or your client's equivalent) and the tool shows up in any chat.

claude_desktop_config.json
{
  "mcpServers": {
    "texau": {
      "command": "npx",
      "args": ["-y", "@texau/mcp-server"],
      "env": { "TEXAU_API_KEY": "..." }
    }
  }
}

Tool name: texau__zoho-get-account-by-id

When to use this.

The "Get Account by ID" action in Zoho CRM allows users to retrieve detailed information about a specific account using its unique Zoho Record ID. By providing the `account_id` as a string input parameter, users can access a comprehensive set of output fields, including account name, number, type, industry, annual revenue, and contact details such as phone and email. This action returns various semantic types, including text, number, date, and boolean, ensuring a rich dataset for analysis. Use cases include account management, reporting, and customer relationship analysis, making it essential for businesses looking to enhance their CRM capabilities. This action falls under the CRM category, streamlining account retrieval processes for improved operational efficiency.

Try it

Run a sample request.

The response is a deterministic, cached example. No live call, no credits used.

Get Account by ID (Zoho CRM)

Try it

The unique Zoho Record ID of the account to retrieve.

Response is cached — no live API call.

Response

Output schema.

Every field returned in `data`. Click rows to expand nested objects.

FieldType
  • account_id
    Account Id
    nullablestring
  • account_name
    Account Name
    string
  • account_number
    Account Number
    nullablestring
  • account_site
    Account Site
    nullablestring
  • account_type
    Account Type
    nullablestring
  • industry
    Industry
    string
  • annual_revenue
    Annual Revenue
    nullablenumber
  • rating
    Rating
    nullablestring
  • mobile_number
    Mobile Number
    string
  • fax
    Fax
    nullablestring
  • website
    Website
    string
  • ticker_symbol
    Ticker Symbol
    nullablestring
  • ownership
    Ownership
    nullablestring
  • employee
    Employee
    nullablenumber
  • sic_code
    Sic Code
    nullablestring
  • billing_street
    Billing Street
    nullablestring
  • billing_city
    Billing City
    nullablestring
  • billing_state
    Billing State
    nullablestring
  • billing_code
    Billing Code
    nullablestring
  • billing_country
    Billing Country
    nullablestring
  • shipping_street
    Shipping Street
    nullablestring
  • shipping_city
    Shipping City
    nullablestring
  • shipping_state
    Shipping State
    nullablestring
  • shipping_code
    Shipping Code
    nullablestring
  • shipping_country
    Shipping Country
    nullablestring
  • description
    Description
    nullablestring
  • owner_id
    Owner Id
    nullablestring
  • owner_name
    Owner Name
    nullablestring
  • owner_email
    Owner Email
    nullablestring
  • parent_account_id
    Parent Account Id
    nullablestring
  • parent_account_name
    Parent Account Name
    nullablestring
  • created_by_id
    Created By Id
    nullablestring
  • created_by_name
    Created By Name
    nullablestring
  • modified_by_id
    Modified By Id
    nullablestring
  • modified_by_name
    Modified By Name
    nullablestring
  • record_status
    Record Status
    nullablestring
  • is_locked
    Is Locked
    nullableboolean
  • created_time
    Created Time
    nullablestring
  • modified_time
    Modified Time
    nullablestring
  • last_activity_time
    Last Activity Time
    nullablestring

Integrate

Copy-pasteable snippets.

Real endpoint: https://v3-api.texau.com/api/v1/zoho-get-account-by-id. Auth: x-api-key.

cURL · api.texau.app
84ms
POST/v1/zoho-get-account-by-id
curl -X POST 'https://v3-api.texau.com/api/v1/zoho-get-account-by-id' \
  -H 'x-api-key: $TEXAU_API_KEY' \
  -H 'content-type: application/json' \
  -d '{"account_id":"Acme, Inc."}'
200 Accepted
{
  "ok": true,
  "data": {
    "account_id": 1,
    "account_name": 1,
    "account_number": 1,
    "account_site": 1,
    "account_type": 1,
    "industry": "sample",
    "annual_revenue": 1,
    "rating": "sample",
    "mobile_number": "sample",
    "fax": "sample",
    "website": "https://acme.com",
    "ticker_symbol": "sample",
    "ownership": "sample",
    "employee": 1,
    "sic_code": "sample",
    "billing_street": "sample",
    "billing_city": "sample",
    "billing_state": "sample",
    "billing_code": "sample",
    "billing_country": 1,
    "shipping_street": "sample",
    "shipping_city": "sample",
    "shipping_state": "sample",
    "shipping_code": "sample",
    "shipping_country": 1,
    "description": "sample",
    "owner_id": "rec_4f3a91",
    "owner_name": "sample",
    "owner_email": "[email protected]",
    "parent_account_id": 1,
    "parent_account_name": 1,
    "created_by_id": "rec_4f3a91",
    "created_by_name": "sample",
    "modified_by_id": "rec_4f3a91",
    "modified_by_name": "sample",
    "record_status": "valid",
    "is_locked": true,
    "created_time": "sample",
    "modified_time": "sample",
    "last_activity_time": "sample"
  }
}

Output

Results land in a TexAu table.

Sample rows below.

Real result preview coming soon.

InputStatusScore
[email protected]valid96
[email protected]risky54
[email protected]invalid12

Workflow

A real example.

Trigger → get account by id (zoho crm) → enrich → push to your CRM. ~80 ms operator effort, the rest runs in the background.

Step 1TriggerNew row, webhook, or schedule.
Step 2Get Account by ID (Zoho CRM)Zoho CRM action runs.
Step 3EnrichWaterfall fills missing fields.
Step 4Push to CRMHubSpot / Salesforce / Pipedrive.

Built for

Who runs this.

GTM EngineerRevOpsAgency

Reliability

Rate limits & reliability.

  • Per-minute limit100 / min
  • Per-day limit2,000 / day
  • RetriesAutomatic w/ backoff
  • ModeSync

Errors

HTTP status codes.

What each response means and what to do about it.

CodeCauseFix
200 OKAction ran. Data in `data`.Read response.
400 Bad RequestMissing or malformed input.Validate against the input schema.
401 UnauthorizedMissing or invalid `x-api-key`.Re-issue from /api-platform.
403 ForbiddenWorkspace lacks plan tier.Upgrade or contact sales.
404 Not FoundAction key not recognized.Verify the slug.
429 Rate LimitedPer-minute or per-day cap hit.Backoff; reduce concurrency.
500 Server ErrorUnexpected TexAu issue.Retry with backoff.
502 Bad GatewayUpstream provider 5xx.Retry; we surface root cause.
504 TimeoutUpstream slower than maxLatency.Switch to `isAsync` polling.

Pricing

What it costs to run.

Light tier

Pricing tier on /pricing. Per-action credit cost is private.

FAQ.

  • Is this real-time?

    Yes. Synchronous actions return in ~1–4 s. Long-running work uses async polling (see status 504 → switch to async).

  • Do I get charged on failure?

    No. Verified failures cost zero credits. Provider miss / 5xx / timeout cascade to the next provider in the waterfall when applicable.

  • Does it work with Claude / Cursor via MCP?

    Yes. Add the texau MCP server to your client config, then call `texau__zoho crm-...` directly.

  • What CRMs can I push results to?

    HubSpot, Salesforce, Pipedrive, Zoho, and GoHighLevel are bidirectional. Smartlead, Instantly, Lemlist, HeyReach, Apollo Sequences, and Reply.io for outbound.

Run Get Account by ID (Zoho CRM) in 60 seconds.

Pull your API key, paste the cURL, ship to your CRM.